/**
 * EMB AUTH TOOL - Master Luxury Gold & Cybernetic Design System
 * Inspired by Cheetah Emblem & Next-Gen Unlock Platforms
 */

:root {
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-bright: #fef08a;
  --gold-dark: #b45309;
  --gold-gradient: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.05) 100%);
  --gold-border: rgba(245, 158, 11, 0.22);
  --gold-border-hover: rgba(245, 158, 11, 0.55);
  --gold-glow: 0 0 25px rgba(245, 158, 11, 0.22);
  --gold-glow-lg: 0 0 45px rgba(245, 158, 11, 0.35);

  --cyan-accent: #38bdf8;
  --cyan-gradient: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  --cyan-glow: 0 0 20px rgba(56, 189, 248, 0.25);

  --bg-dark: #040711;
  --bg-darker: #020408;
  --bg-card: rgba(10, 15, 29, 0.82);
  --bg-card-hover: rgba(15, 23, 42, 0.95);
  --bg-card-inner: rgba(3, 7, 18, 0.6);

  --text-white: #ffffff;
  --text-light: #f1f5f9;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  --success: #10b981;
  --success-glow: 0 0 16px rgba(16, 185, 129, 0.35);
  --danger: #ef4444;
  --danger-glow: 0 0 16px rgba(239, 68, 68, 0.35);
  --warning: #f59e0b;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #040711;
}
::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Background Ambient Canvas */
#emb-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.emb-ambient-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 100% 70%, rgba(56, 189, 248, 0.04) 0%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.emb-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
.emb-gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.emb-cyan-text {
  color: var(--cyan-accent);
}

/* Header & Nav */
.emb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 7, 17, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.12);
  transition: all 0.3s ease;
}

.emb-header.scrolled {
  background: rgba(3, 5, 12, 0.95);
  border-bottom-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.emb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.emb-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-white);
  transition: transform 0.2s ease;
}

.emb-logo:hover {
  transform: translateY(-1px);
}

.emb-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.emb-logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.emb-logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav Links */
.emb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.emb-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
}

.emb-nav-link:hover {
  color: #fff;
  background: rgba(245, 158, 11, 0.08);
}

.emb-nav-link.active {
  color: #fff;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

.emb-nav-link.highlight {
  color: var(--gold-light);
  font-weight: 700;
}

/* Auth Buttons */
.emb-auth-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Universal Buttons */
.emb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.emb-btn-primary {
  background: var(--gold-gradient);
  color: #030611 !important;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  font-weight: 800;
}

.emb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.55);
  filter: brightness(1.06);
}

.emb-btn-outline {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--gold-light) !important;
}

.emb-btn-outline:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.25);
  transform: translateY(-2px);
}

.emb-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light) !important;
}

.emb-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff !important;
  transform: translateY(-1px);
}

.emb-btn-cyan {
  background: var(--cyan-gradient);
  color: #030712 !important;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
  font-weight: 800;
}

.emb-btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.55);
}

.emb-btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.emb-btn-block {
  width: 100%;
}

/* Mobile Toggle */
.emb-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.emb-mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(4, 7, 17, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: 24px;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.emb-mobile-menu.open {
  display: flex;
}

.emb-mobile-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.emb-mobile-link.active {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--gold-light);
}

/* Hero Section */
.emb-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.emb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--gold-light);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.emb-hero-emblem-wrap {
  width: 170px;
  height: 170px;
  margin: 0 auto 28px;
  position: relative;
}

.emb-hero-emblem {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 45px rgba(245, 158, 11, 0.4), inset 0 0 20px rgba(245, 158, 11, 0.3);
  animation: emblemPulse 4s ease-in-out infinite alternate;
}

@keyframes emblemPulse {
  0% { transform: scale(1); box-shadow: 0 0 35px rgba(245, 158, 11, 0.35); }
  100% { transform: scale(1.03); box-shadow: 0 0 55px rgba(245, 158, 11, 0.6), 0 0 20px rgba(56, 189, 248, 0.3); }
}

.emb-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}

.emb-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan-accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.emb-hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.emb-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

/* Hero Stats Counter Grid */
.emb-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.8) 0%, rgba(6, 11, 25, 0.9) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-width: 960px;
  margin: 0 auto;
}

.emb-hero-stat-value {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 4px;
}

.emb-hero-stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.emb-section {
  padding: 60px 0;
  position: relative;
}

.emb-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.emb-section-header.center {
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

.emb-section-header svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.emb-section-header h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.emb-section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 8px;
}

/* Feature Cards Grid (4 columns) */
.emb-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.emb-feature-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.85) 0%, rgba(6, 11, 25, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.emb-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.emb-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.15);
}

.emb-feature-card:hover::before {
  opacity: 1;
}

.emb-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
}

.emb-feature-icon.cyan {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--cyan-accent);
}

.emb-feature-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.emb-feature-icon.green {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.emb-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.emb-feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Server Status Grid */
.emb-status-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.85) 0%, rgba(6, 11, 25, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.25s ease;
}

.emb-status-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.emb-status-name {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.emb-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.emb-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.emb-status-dot.online {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.emb-status-dot.online::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.emb-status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.emb-status-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.emb-status-label.online { color: #34d399; }
.emb-status-label.offline { color: #f87171; }

/* Tool Download Cards (3 columns) */
.emb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.emb-tool-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.9) 0%, rgba(6, 11, 25, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.emb-tool-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--gold-glow);
  transform: translateY(-4px);
}

.emb-tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.emb-tool-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--gold-light);
  display: grid;
  place-items: center;
}

.emb-tool-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cyan-accent);
}

.emb-tool-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.emb-tool-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}

/* Telemetry Stats Grid (12 boxes) */
.emb-grid-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.emb-stat-box {
  background: rgba(6, 11, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.emb-stat-box:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.emb-stat-value {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}

.emb-stat-value.gold { color: var(--gold-light); }
.emb-stat-value.cyan { color: var(--cyan-accent); }
.emb-stat-value.green { color: #34d399; }
.emb-stat-value.red { color: #f87171; }
.emb-stat-value.orange { color: #fb923c; }

.emb-stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
}

/* Pricing Page Grid */
.emb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.emb-pricing-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.9) 0%, rgba(6, 11, 25, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.emb-pricing-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), var(--gold-glow);
}

.emb-pricing-cost {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-card-inner);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 16px 0;
}

.emb-pricing-amount {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
}

.emb-pricing-unit {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.emb-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  flex: 1;
}

.emb-pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.emb-pricing-features li svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* Distributors Grid */
.emb-dist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.emb-dist-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.9) 0%, rgba(6, 11, 25, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.emb-dist-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), var(--gold-glow);
}

.emb-dist-logo-box {
  width: 100%;
  height: 84px;
  background: var(--bg-card-inner);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  margin-bottom: 18px;
  overflow: hidden;
}

.emb-dist-logo-box img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.emb-dist-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.emb-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.emb-dist-country {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.emb-dist-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.emb-dist-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.emb-social-row {
  display: flex;
  gap: 8px;
}

.emb-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1 !important;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.emb-social-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff !important;
}

.emb-social-btn.wa:hover {
  color: #25D366 !important;
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.1);
}

.emb-social-btn.tg:hover {
  color: #0088cc !important;
  border-color: rgba(0, 136, 204, 0.4);
  background: rgba(0, 136, 204, 0.1);
}

/* Interactive IMEI Checker Card */
.emb-checker-container {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 11, 25, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.emb-checker-input-group {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.emb-checker-input {
  flex: 1;
  background: var(--bg-card-inner);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 1rem;
  font-family: var(--font-mono);
  color: #fff;
  outline: none;
  transition: all 0.2s ease;
}

.emb-checker-input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.emb-checker-result {
  margin-top: 28px;
  display: none;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--bg-card-inner);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.emb-checker-result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.emb-checker-result-row:last-child {
  border-bottom: none;
}

/* Footer */
.emb-footer {
  margin-top: auto;
  background: rgba(3, 5, 12, 0.95);
  border-top: 1px solid rgba(245, 158, 11, 0.12);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.emb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.emb-footer-about p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 16px 0;
  max-width: 340px;
}

.emb-footer-links h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.emb-footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emb-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.emb-footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.emb-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating Quick Support Button */
.emb-floating-social {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emb-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.emb-float-btn.telegram {
  background: linear-gradient(135deg, #0088cc 0%, #00b4d8 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.emb-float-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.emb-float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* Scroll Entrance Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-delay-1 { transition-delay: 0.1s; }
.scroll-animate-delay-2 { transition-delay: 0.2s; }
.scroll-animate-delay-3 { transition-delay: 0.3s; }
.scroll-animate-delay-4 { transition-delay: 0.4s; }
.scroll-animate-delay-5 { transition-delay: 0.5s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .emb-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .emb-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .emb-grid-stats { grid-template-columns: repeat(3, 1fr); }
  .emb-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .emb-nav, .emb-auth-buttons { display: none; }
  .emb-mobile-toggle { display: inline-flex; }
  .emb-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .emb-grid-4 { grid-template-columns: 1fr; }
  .emb-grid-3 { grid-template-columns: 1fr; }
  .emb-grid-stats { grid-template-columns: repeat(2, 1fr); }
  .emb-footer-grid { grid-template-columns: 1fr; }
  .emb-checker-input-group { flex-direction: column; }
}
