/* =============================================
   WALLET FINDER — Custom Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --gold: #F5A623;
  --gold-light: #FFD166;
  --gold-glow: rgba(245, 166, 35, 0.35);
  --amber: #FF8C00;
  --navy: #050B18;
  --navy-mid: #0A1628;
  --navy-light: #0D1F3C;
  --blue-neon: #00D4FF;
  --blue-glow: rgba(0, 212, 255, 0.2);
  --glass-bg: rgba(13, 31, 60, 0.55);
  --glass-border: rgba(245, 166, 35, 0.18);
  --text-primary: #E8EDF5;
  --text-muted: #7A8FAD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- CANVAS BACKGROUND ---- */
#matrix-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

/* ---- GLOBAL LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(245,166,35,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.6), 0 0 32px var(--gold-glow);
}

/* ---- GOLD GRADIENT TEXT ---- */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- NEON GLOW TEXT ---- */
.neon-text {
  color: var(--blue-neon);
  text-shadow: 0 0 12px var(--blue-neon), 0 0 40px rgba(0,212,255,0.4);
}

/* ---- NAVBAR ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(5, 11, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,166,35,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 18px var(--gold-glow);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-1px);
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 0 0 var(--gold-glow);
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  box-shadow: 0 0 32px var(--gold-glow), 0 4px 20px rgba(245,166,35,0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold-light);
  background: rgba(245,166,35,0.07);
  transform: translateY(-2px);
}

/* Ripple */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ---- HERO MOCKUP ---- */
.hero-mockup {
  position: relative;
}
.mockup-window {
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(245,166,35,0.1);
}
.mockup-topbar {
  background: rgba(5, 11, 24, 0.95);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #28CA41; }
.mockup-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}
.mockup-body {
  padding: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  min-height: 320px;
}
.mockup-line {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mockup-line .prompt { color: var(--gold); }
.mockup-line .cmd { color: #a8d8ff; }
.mockup-line .output { color: #6be56b; }
.mockup-line .warn { color: var(--gold-light); }
.mockup-line .dim { color: var(--text-muted); }
.scan-bar-wrap {
  margin-top: 1.2rem;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  overflow: hidden;
  height: 8px;
}
.scan-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 6px;
  animation: scan-progress 3s ease-in-out infinite;
  box-shadow: 0 0 10px var(--gold-glow);
}
@keyframes scan-progress {
  0% { width: 0%; }
  70% { width: 100%; }
  80% { width: 100%; }
  100% { width: 0%; }
}
.mockup-floating-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px var(--gold-glow);
  white-space: nowrap;
}
.mockup-floating-badge span { font-size: 1.4rem; font-weight: 900; display: block; }

/* ---- SECTION TITLES ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ---- STATS ---- */
#stats {
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.2rem;
}
.stat-icon.gold { background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.25); }
.stat-icon.blue { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); }
.stat-icon.green { background: rgba(40, 202, 65, 0.1); border: 1px solid rgba(40, 202, 65, 0.2); }
.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-live {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #28CA41;
  margin-top: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
}
.stat-live::before {
  content: '';
  width: 6px; height: 6px;
  background: #28CA41;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.4s ease infinite;
}

/* ---- FEATURES ---- */
#features {
  padding: 5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  padding: 2rem;
}
.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  box-shadow: 0 0 20px rgba(245,166,35,0.1);
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.feature-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- HOW IT WORKS ---- */
#how-it-works {
  padding: 5rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.step-card {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 20px var(--gold-glow);
}
.step-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
#testimonials {
  padding: 5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card { padding: 2rem; }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-quote {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid rgba(245,166,35,0.35);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 2px solid rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  overflow: hidden;
}
.author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-handle { font-size: 0.78rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.verified-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--blue-neon);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ---- TELEGRAM ---- */
#telegram {
  padding: 5rem 0;
}
.telegram-card {
  padding: 4rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(13,31,60,0.8) 0%, rgba(10,22,40,0.9) 100%);
  border: 1px solid rgba(0,212,255,0.2);
  box-shadow: 0 0 60px rgba(0,212,255,0.06);
}
.tg-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0088CC, #00ABEF);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 40px rgba(0,136,204,0.35);
}
.telegram-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}
.telegram-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-telegram {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #0088CC, #00ABEF);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.4rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
  letter-spacing: -0.01em;
}
.btn-telegram:hover {
  box-shadow: 0 0 32px rgba(0,136,204,0.5);
  transform: translateY(-2px);
}
.telegram-members {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.telegram-members strong { color: var(--text-primary); }

/* ---- PROOF MEDIA GALLERY ---- */
#proof-media {
  padding: 5rem 0;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 3rem;
}
/* Layout: 2 large + 2 small + 1 wide video */
.media-item { border-radius: 1rem; overflow: hidden; position: relative; cursor: pointer; }
.media-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.media-item:nth-child(2) { grid-column: span 6; grid-row: span 2; }
.media-item:nth-child(3) { grid-column: span 6; }
.media-item:nth-child(4) { grid-column: span 6; }
.media-item:nth-child(5) { grid-column: span 12; }

.media-placeholder {
  width: 100%;
  min-height: 200px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
  aspect-ratio: 4/3;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.media-item:nth-child(1) .media-placeholder,
.media-item:nth-child(2) .media-placeholder { aspect-ratio: auto; height: 100%; min-height: 300px; }
.media-item:nth-child(5) .media-placeholder,
.media-item:nth-child(6) .media-placeholder { aspect-ratio: 16/9; }

.media-placeholder:hover {
  border-color: rgba(245,166,35,0.45);
  background: rgba(13,31,60,0.75);
}
.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.04) 0%, transparent 60%);
}
.media-placeholder-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.media-placeholder-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.media-placeholder-label strong {
  display: block;
  font-size: 0.78rem;
  color: rgba(245,166,35,0.7);
  margin-bottom: 2px;
}

/* Video placeholder — play button overlay */
.media-placeholder.is-video .media-placeholder-icon {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.25);
}
.media-placeholder.is-video .media-placeholder-label strong {
  color: rgba(0,212,255,0.8);
}

/* Corner tag */
.media-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(5,11,24,0.85);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}
.media-tag.video { color: var(--blue-neon); border-color: rgba(0,212,255,0.2); }

/* Replace hint on hover */
.media-replace-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(5,11,24,0.95) 0%, transparent 100%);
  padding: 1.2rem 1rem 0.75rem;
  font-size: 0.7rem;
  color: rgba(122,143,173,0.7);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
}
.media-placeholder:hover .media-replace-hint { opacity: 1; }

/* Actual img/video when user drops in real media */
.media-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}

.media-placeholder video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #050b18;
  border-radius: 1rem;
}

/* ---- LIGHTBOX ---- */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#lightbox.open {
  opacity: 1;
  pointer-events: all;
}
#lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(245,166,35,0.15);
}
#lightbox-inner img {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 1rem;
}
#lightbox-inner video {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 1rem;
  background: #000;
}
#lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: #F5A623;
  font-size: 1.4rem;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.2s;
}
#lightbox-close:hover { background: rgba(245,166,35,0.3); }

/* Responsive */
@media (max-width: 900px) {
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .media-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .media-placeholder { aspect-ratio: 4/3 !important; min-height: 160px !important; height: auto !important; }
}
@media (max-width: 500px) {
  .media-grid { grid-template-columns: 1fr; }
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(122,143,173,0.5);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- DIVIDER ---- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 100px;
  margin: 1rem auto 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-mockup { order: -1; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .telegram-card { padding: 2rem 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

/* ---- MISC ---- */
::selection { background: var(--gold-glow); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
