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

:root {
  --pink:      #FF6B9D;
  --purple:    #9B59B6;
  --purpled:   #7C3AED;
  --purple-lt: #F5F3FF;
  --yellow:    #FFD700;
  --green:     #10B981;
  --blue:      #0EA5E9;
  --orange:    #FF8C42;
  --cream:     #FFF9F0;
  --white:     #FFFFFF;
  --text:      #1E1B2E;
  --muted:     #6B7280;
  --border:    #EDE9FE;
  --dark:      #1A1035;
  --tab-accent:#8B5CF6;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --radius:    20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 40px;
  background: rgba(255,249,240,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(237,233,254,.6);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(139,92,246,.12); }
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 44px; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: 14.5px;
  color: var(--text); transition: color .2s;
}
.nav-links a:hover { color: var(--purpled); }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--purpled));
  color: #fff !important; padding: 8px 20px; border-radius: 50px;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(124,58,237,.25);
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); color: #fff !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--text); border-radius: 2px;
  transition: .3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 69px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 199;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 13px 0; font-weight: 700; font-size: 16px;
  color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
p  { color: #555; font-size: 1.02rem; }
a  { color: var(--purpled); }

.gradient-text {
  background: linear-gradient(135deg, var(--pink), var(--purpled));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block; font-size: 11.5px; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--purpled); background: var(--purple-lt);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}

/* ── HERO ─────────────────────────────────────────────── */
#home {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; padding-bottom: 80px;
  background: linear-gradient(160deg, #fff6f0 0%, #fef0ff 50%, #eff6ff 100%);
}
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
}
.blob-1 { width: 600px; height: 600px; background: #e9d5ff; top: -200px; right: -100px; animation: drift 8s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: #fce7f3; bottom: -100px; left: -50px; animation: drift 10s ease-in-out infinite reverse; }
.blob-3 { width: 300px; height: 300px; background: #dbeafe; top: 40%; left: 40%; animation: drift 12s ease-in-out infinite 2s; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.05); } }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1140px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 60px; flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 300px; }
.hero-tagline { font-size: 1.15rem; color: #555; margin: 20px 0 32px; font-weight: 600; max-width: 480px; }

.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--dark); color: #fff;
  padding: 12px 22px; border-radius: 16px;
  text-decoration: none; font-weight: 800; font-size: 14px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
}
.badge:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.badge-alt { background: linear-gradient(135deg, #1D1D1D, #3D3D3D); }
.badge-icon { font-size: 22px; }
.badge-sub { font-size: 10px; font-weight: 600; opacity: .7; display: block; }

.hero-stats { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.9rem; font-weight: 900; color: var(--purpled); line-height: 1; }
.stat-lbl { font-size: 11.5px; font-weight: 700; color: #999; margin-top: 3px; }

.hero-img {
  flex: 1; min-width: 280px; display: flex; justify-content: center;
  position: relative;
}
.hero-img img {
  width: min(360px, 100%);
  filter: drop-shadow(0 20px 50px rgba(139,92,246,.28));
  animation: float 5s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.hero-card-float {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 10px 16px; font-weight: 800; font-size: 13px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14); z-index: 2; white-space: nowrap;
}
.hero-card-1 { top: 10%;  left: -5%; animation: bobL 4s ease-in-out infinite; color: #7C3AED; }
.hero-card-2 { top: 52%;  right: -8%; animation: bobR 5s ease-in-out infinite 1s; color: #10B981; }
.hero-card-3 { bottom: 8%; left: 5%;  animation: bobL 6s ease-in-out infinite .5s; color: #0EA5E9; }
@keyframes bobL { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(0deg); } }
@keyframes bobR { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-10px) rotate(0deg); } }

/* ── AGE STRIP ─────────────────────────────────────────── */
.age-strip {
  background: linear-gradient(135deg, var(--purpled), #EC4899);
  padding: 16px 0; overflow-x: auto;
}
.age-strip-inner {
  display: flex; gap: 12px; justify-content: center;
  padding: 0 20px; flex-wrap: wrap;
}
.age-pill {
  background: rgba(255,255,255,.18); color: #fff;
  padding: 6px 18px; border-radius: 50px; font-weight: 800; font-size: 13px;
  white-space: nowrap; cursor: default;
}

/* ── EXPLORE SECTION ────────────────────────────────────── */
#explore {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 32px 80px;
}
.explore-header { text-align: center; margin-bottom: 40px; }
.explore-sub { color: #777; margin-top: 10px; font-size: 1.05rem; }

/* Tabs */
.tab-bar {
  position: relative; display: flex; gap: 4px;
  background: #F3F4F6; border-radius: var(--radius);
  padding: 6px; margin-bottom: 28px;
  max-width: 460px; margin-left: auto; margin-right: auto;
}
.tab-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border: none; background: none; cursor: pointer;
  font-family: inherit; font-weight: 800; font-size: 14.5px; color: #888;
  border-radius: var(--radius-sm); position: relative; z-index: 1;
  transition: color .25s;
}
.tab-btn.active { color: var(--tab-accent); }
.tab-btn:hover:not(.active) { color: #555; }
.tab-icon { font-size: 17px; }
.tab-count {
  background: var(--tab-accent); color: #fff;
  font-size: 10px; font-weight: 900; padding: 1px 7px; border-radius: 50px;
  min-width: 26px; text-align: center;
  opacity: 0; transition: opacity .3s;
}
.tab-count:not(:empty) { opacity: 1; }
.tab-ink {
  position: absolute; top: 6px; height: calc(100% - 12px);
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
  transition: left .25s cubic-bezier(.4,0,.2,1), width .25s cubic-bezier(.4,0,.2,1);
  pointer-events: none; z-index: 0;
}

/* Filter bar */
.filter-bar {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center; margin-bottom: 28px;
}
.search-wrap {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid #E5E7EB; border-radius: 50px;
  padding: 8px 16px; flex: 1; min-width: 200px; max-width: 340px;
  transition: border-color .2s;
}
.search-wrap:focus-within { border-color: var(--tab-accent); }
.search-icon { font-size: 15px; opacity: .6; flex-shrink: 0; }
.search-wrap input {
  border: none; outline: none; background: none;
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--text);
  flex: 1;
}
.search-wrap input::placeholder { color: #bbb; }
.search-clear {
  border: none; background: none; cursor: pointer;
  font-size: 13px; color: #999; padding: 2px; line-height: 1;
}

.age-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.af-btn {
  padding: 7px 14px; border: 2px solid #E5E7EB; border-radius: 50px;
  background: #fff; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 12.5px; color: #777;
  transition: all .2s; white-space: nowrap;
}
.af-btn:hover { border-color: var(--tab-accent); color: var(--tab-accent); }
.af-btn.active {
  background: var(--tab-accent); border-color: var(--tab-accent);
  color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* Cards grid */
.grid-wrap { min-height: 320px; }
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.content-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  cursor: pointer; transition: transform .22s, box-shadow .22s;
  display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,.05);
}
.content-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card-media {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: #F9FAFB;
  display: flex; align-items: center; justify-content: center;
}
.card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  font-size: 48px; font-weight: 900;
}
.premium-badge {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff; font-size: 10px; font-weight: 900;
  padding: 3px 10px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.dur-badge {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  backdrop-filter: blur(4px);
}

.card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.cat-tag, .age-tag {
  font-size: 10.5px; font-weight: 800; padding: 3px 9px;
  border-radius: 20px; white-space: nowrap;
}
.card-title { font-size: 14.5px; font-weight: 900; color: var(--text); line-height: 1.3; }
.card-author { font-size: 11.5px; color: #888; font-weight: 600; margin-top: -2px; }
.card-desc { font-size: 12px; color: #777; line-height: 1.55; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.card-rating { font-size: 12px; font-weight: 700; color: #555; }
.card-cta {
  color: #fff; border: none; cursor: pointer;
  font-family: inherit; font-weight: 800; font-size: 11.5px;
  padding: 7px 14px; border-radius: 50px;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}
.card-cta:hover { opacity: .88; transform: translateY(-1px); }

/* Skeleton */
.skeleton-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(0,0,0,.04);
}
.sk-img { aspect-ratio: 4/3; background: linear-gradient(90deg,#F3F4F6,#E5E7EB,#F3F4F6); background-size: 200%; animation: shimmer 1.4s infinite; }
.sk-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.sk-line { height: 12px; border-radius: 6px; background: linear-gradient(90deg,#F3F4F6,#E5E7EB,#F3F4F6); background-size: 200%; animation: shimmer 1.4s infinite; }
.sk-line.w80 { width: 80%; } .sk-line.w60 { width: 60%; } .sk-line.w90 { width: 90%; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.empty-state {
  flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 20px; gap: 12px;
}
.empty-emoji { font-size: 56px; }
.empty-state p { font-size: 16px; color: #888; font-weight: 700; }
.error-msg { text-align: center; padding: 48px; color: #F59E0B; font-weight: 700; }

.load-more-btn {
  background: #fff; border: 2px solid var(--tab-accent); color: var(--tab-accent);
  padding: 12px 36px; border-radius: 50px; cursor: pointer;
  font-family: inherit; font-weight: 800; font-size: 14px;
  transition: all .2s;
}
.load-more-btn:hover { background: var(--tab-accent); color: #fff; }

/* ── DOWNLOAD BANNER ─────────────────────────────────── */
#download {
  background: linear-gradient(135deg, var(--purpled) 0%, #EC4899 50%, #F59E0B 100%);
  padding: 72px 40px; margin: 0 20px; border-radius: 32px;
  text-align: center; color: #fff;
  box-shadow: 0 20px 60px rgba(124,58,237,.30);
}
.dl-inner { max-width: 640px; margin: 0 auto; }
#download h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
#download p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-top: 12px; }

/* ── ABOUT ─────────────────────────────────────────────── */
#about {
  background: var(--white); border-radius: 32px; margin: 40px 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,.06);
  padding: 72px 64px; text-align: center;
}
#about > h2 { margin-bottom: 8px; }
#about > p { max-width: 600px; margin: 0 auto 48px; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 0; text-align: left;
}
.feature-card {
  border-radius: var(--radius); padding: 28px 24px;
  border: 1.5px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fc-purple { background: #F5F3FF; border-color: #DDD6FE; }
.fc-green  { background: #ECFDF5; border-color: #A7F3D0; }
.fc-blue   { background: #F0F9FF; border-color: #BAE6FD; }
.fc-yellow { background: #FFFBEB; border-color: #FDE68A; }
.fc-pink   { background: #FFF1F2; border-color: #FECDD3; }
.fc-teal   { background: #F0FDFA; border-color: #99F6E4; }
.feature-emoji { font-size: 36px; margin-bottom: 10px; }
.feature-card p { font-size: .93rem; color: #555; margin-top: 4px; line-height: 1.6; }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { text-align: center; padding: 80px 40px; }
#contact h2 { margin-bottom: 10px; }
.contact-btn {
  display: inline-block; margin-top: 20px;
  background: linear-gradient(135deg, var(--pink), var(--purpled));
  color: #fff; padding: 15px 40px; border-radius: 50px;
  font-weight: 800; font-size: 16px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(124,58,237,.30);
  transition: transform .2s, box-shadow .2s;
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(124,58,237,.38); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--dark); color: rgba(255,255,255,.65);
  padding: 56px 40px 32px; text-align: center; margin-top: 40px;
}
.footer-logo { height: 56px; margin-bottom: 20px; filter: brightness(0) invert(1) opacity(.85); }
.footer-tagline { font-size: 13.5px; margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-weight: 700; font-size: 13.5px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: #fff; border-radius: 28px; width: 100%; max-width: 820px;
  max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  animation: slideUp .25s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.08); cursor: pointer;
  font-size: 16px; font-weight: 900; color: #555;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(0,0,0,.16); }

.modal-content { padding: 28px; }
.modal-layout { display: flex; gap: 28px; flex-wrap: wrap; }
.modal-left { flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.modal-img { width: 200px; height: 200px; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-md); }
.modal-placeholder { width: 200px; height: 200px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 72px; font-weight: 900; }
.modal-type-badge, .modal-prem-badge, .modal-free-badge {
  width: 200px; text-align: center; padding: 7px; border-radius: 10px;
  color: #fff; font-weight: 800; font-size: 12px;
}
.modal-prem-badge { background: linear-gradient(135deg,#F59E0B,#D97706); }
.modal-free-badge { background: #10B981; }

.modal-right { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 10px; }
.modal-cats  { display: flex; gap: 6px; flex-wrap: wrap; }
.modal-title { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 900; color: var(--text); line-height: 1.25; }
.modal-author { font-size: 13px; color: #888; font-weight: 600; }
.modal-desc { font-size: 14px; color: #555; line-height: 1.7; }
.modal-info { display: flex; flex-direction: column; gap: 7px; background: #F9FAFB; border-radius: 14px; padding: 14px 16px; }
.mi-row { display: flex; gap: 10px; font-size: 13px; font-weight: 700; color: #444; }
.mi-row span:first-child { width: 20px; text-align: center; }

.modal-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.modal-cta-btn {
  display: block; text-align: center; color: #fff; text-decoration: none;
  padding: 14px 24px; border-radius: 50px; font-weight: 900; font-size: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,.20);
  transition: opacity .2s, transform .2s;
}
.modal-cta-btn:hover { opacity: .88; transform: translateY(-2px); }
.modal-app-badges { display: flex; gap: 10px; }
.mini-badge {
  flex: 1; text-align: center; background: var(--dark); color: #fff;
  padding: 9px 14px; border-radius: 12px; text-decoration: none;
  font-weight: 800; font-size: 12.5px; transition: opacity .2s;
}
.mini-badge:hover { opacity: .8; }

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-hero {
  padding: 140px 40px 60px;
  background: linear-gradient(160deg, #fff6f0 0%, #fef0ff 60%, #eff6ff 100%);
  text-align: center;
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.legal-hero p  { font-size: 1rem; color: #888; margin-top: 10px; font-weight: 600; }

.legal-body { max-width: 820px; margin: 0 auto; padding: 64px 40px 96px; }
.legal-body h3 { margin-top: 36px; color: var(--purpled); font-size: 1.05rem; }
.legal-body p, .legal-body li { font-size: .97rem; color: #555; margin-top: 8px; }
.legal-body ul { padding-left: 22px; margin-top: 8px; }
.legal-body li { margin-bottom: 5px; }
.legal-body a { color: var(--purpled); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-img { display: none; }
  .hero-text { min-width: unset; }
  #about { padding: 48px 32px; }
}

@media (max-width: 768px) {
  #navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding: 0 20px; }
  .hero-stats { gap: 20px; }

  .age-strip { display: none; }

  #explore { padding: 48px 16px 60px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: 100%; }

  .content-grid { grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 14px; }

  #download { margin: 0; border-radius: 0; padding: 56px 24px; }

  #about { margin: 20px 0; border-radius: 0; padding: 40px 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 20px 16px; }

  #contact { padding: 60px 20px; }

  .modal-layout { flex-direction: column; }
  .modal-left { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: flex-start; }
  .modal-img, .modal-placeholder { width: 140px; height: 140px; }
  .modal-type-badge, .modal-prem-badge, .modal-free-badge { width: auto; flex: 1; }

  .legal-hero { padding: 120px 24px 48px; }
  .legal-body { padding: 40px 20px 72px; }
  footer { padding: 40px 20px 24px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .tab-btn { font-size: 13px; padding: 9px 10px; }
  .tab-icon { display: none; }
  .content-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .modal-content { padding: 20px; }
}
