/* ================================================================
   CrushOn AI — crushonai.com.au
   Master Stylesheet  |  style.css
   ================================================================ */

/* ── Google Fonts ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────────── */
:root {
  --bg:            #0F0F0F;
  --bg-2:          #141414;
  --bg-3:          #1a1a1a;
  --surface:       rgba(255,255,255,0.032);
  --surface-hover: rgba(255,255,255,0.06);
  --border:        rgba(255,255,255,0.072);
  --border-bright: rgba(168,85,247,0.38);

  --accent:        #A855F7;
  --accent-dark:   #7C3AED;
  --accent-dim:    rgba(168,85,247,0.18);
  --accent-glow:   rgba(168,85,247,0.28);
  --pink:          #EC4899;
  --gold:          #F59E0B;
  --green:         #10B981;
  --red:           #EF4444;
  --blue:          #3B82F6;
  --cyan:          #06B6D4;

  --text:          #F0EEF5;
  --text-2:        #A09CB0;
  --text-3:        #554F66;

  --sidebar-w:     216px;
  --topbar-h:      58px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-sm:     8px;
  --radius-pill:   999px;
  --shadow:        0 8px 32px rgba(0,0,0,0.55);
  --shadow-accent: 0 6px 28px rgba(168,85,247,0.38);
  --ease:          cubic-bezier(0.4,0,0.2,1);
  --font-display:  'Roboto', system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body:     'Roboto', system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  --glass:         blur(18px) saturate(160%);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; outline: none; }
input, select, textarea { font-family: inherit; outline: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ── Scrollbars ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.35); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,0.6); }

/* ── Layout Shell ──────────────────────────────────────────────── */
.app-shell { display: flex; min-height: 100vh; }

/* ================================================================
   SIDEBAR
   ================================================================ */
#sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: rgba(15,15,15,0.88);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  z-index: 200;
  transition: transform 0.3s var(--ease);
  will-change: transform;
}

/* Logo */
.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 14px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
  box-shadow: 0 0 18px rgba(168,85,247,0.5);
}
.logo-text-wrap { line-height: 1.15; }
.logo-text-wrap strong {
  display: block; font-family: var(--font-display);
  font-size: 14.5px; font-weight: 800; color: var(--text);
}
.logo-text-wrap span { font-size: 10px; color: var(--text-3); font-weight: 400; }

/* Nav */
.sidebar-nav { flex: 1; overflow-y: auto; padding: 10px 8px; scrollbar-width: none; }
.sidebar-nav::-webkit-scrollbar { display: none; }
.nav-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  color: var(--text-3); padding: 10px 8px 6px;
  text-transform: uppercase;
}
.nav-link {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500;
  color: var(--text-2);
  width: 100%; text-align: left;
  transition: background .15s var(--ease), color .15s var(--ease);
  margin-bottom: 1px; position: relative;
}
.nav-link:hover { background: var(--surface-hover); color: var(--text); }
.nav-link.active {
  background: var(--accent-dim);
  color: #D8B4FE;
  border-left: 2.5px solid var(--accent);
  padding-left: calc(10px - 2.5px);
}
.nav-link .nav-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.nav-badge {
  margin-left: auto; padding: 1px 7px;
  background: var(--accent); color: #fff;
  font-size: 9.5px; font-weight: 700;
  border-radius: var(--radius-pill);
}
.nav-badge.hot { background: linear-gradient(90deg, var(--pink), var(--accent)); }

/* Sidebar footer */
.sidebar-footer {
  border-top: 1px solid var(--border);
  padding: 10px 8px 12px;
  flex-shrink: 0;
}
.footer-nav-link {
  display: block; padding: 5px 8px;
  font-size: 11.5px; color: var(--text-3);
  border-radius: 6px; cursor: pointer;
  transition: color .15s, background .15s;
  width: 100%; text-align: left;
}
.footer-nav-link:hover { color: var(--text-2); background: var(--surface); }
.footer-promo-links {
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 8px 4px 4px;
}
.footer-promo-links button {
  font-size: 10.5px; color: var(--accent);
  padding: 2px 6px; border-radius: 4px;
  transition: background .15s;
}
.footer-promo-links button:hover { background: var(--accent-dim); }
.footer-copy {
  font-size: 9.5px; color: var(--text-3);
  padding: 6px 4px 0;
  line-height: 1.6;
}

/* Sidebar mobile backdrop */
#sb-backdrop {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(2px);
}
#sb-backdrop.visible { display: block; }

/* ================================================================
   MAIN CONTENT AREA
   ================================================================ */
.main-wrap {
  margin-left: var(--sidebar-w);
  flex: 1; display: flex; flex-direction: column;
  min-height: 100vh;
  min-width: 0;
}

/* ================================================================
   TOPBAR
   ================================================================ */
#topbar {
  position: sticky; top: 0; z-index: 100;
  height: var(--topbar-h);
  display: flex; align-items: center; gap: 10px;
  padding: 0 18px;
  background: rgba(15,15,15,0.92);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
}
#hamburger {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  color: var(--text-2); font-size: 18px;
  transition: background .15s;
}
#hamburger:hover { background: var(--surface-hover); }
.search-box {
  flex: 1; position: relative; max-width: 480px;
}
.search-box .s-icon {
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 13px; pointer-events: none;
}
#search-inp {
  width: 100%; padding: 8px 14px 8px 34px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text); font-size: 13px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
#search-inp:focus {
  border-color: var(--accent);
  background: rgba(168,85,247,0.07);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.14);
}
#search-inp::placeholder { color: var(--text-3); }
.topbar-icons { display: flex; gap: 2px; margin-left: auto; }
.topbar-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: background .15s, color .15s;
}
.topbar-icon:hover { background: var(--surface-hover); color: var(--text); }
.btn-login {
  flex-shrink: 0; padding: 7px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; color: #fff;
  box-shadow: var(--shadow-accent);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.btn-login:hover {
  opacity: .92; transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(168,85,247,0.48);
}

/* ================================================================
   HERO BANNER
   ================================================================ */
.hero-banner {
  margin: 16px 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 196px;
  background: linear-gradient(125deg, #150830 0%, #2A1060 28%, #4C1D95 58%, #6D28D9 82%, #7C3AED 100%);
  border: 1px solid rgba(168,85,247,0.22);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  cursor: pointer;
  display: flex; align-items: stretch;
}
.hero-glows {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 20% 50%, rgba(168,85,247,.28) 0%, transparent 60%),
    radial-gradient(ellipse 45% 70% at 78% 35%, rgba(236,72,153,.18) 0%, transparent 55%),
    radial-gradient(ellipse 30% 50% at 95% 90%, rgba(99,102,241,.14) 0%, transparent 50%);
}
.hero-chars {
  position: absolute; left: 0; top: 0; bottom: 0;
  display: flex; align-items: flex-end; gap: 0px;
  padding: 0 8px; z-index: 2; pointer-events: none;
}
.hero-char { font-size: 110px; line-height: 1; filter: drop-shadow(0 0 24px rgba(168,85,247,0.55)); }
.hero-char:nth-child(2) { font-size: 88px; opacity: .72; margin-bottom: 6px; }
.hero-body {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 28px 32px 28px 200px; position: relative; z-index: 3;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.35); border: 1px solid rgba(168,85,247,.38);
  border-radius: var(--radius-pill); padding: 4px 12px 4px 4px;
  margin-bottom: 11px; width: fit-content;
}
.hero-eyebrow-badge {
  background: linear-gradient(135deg,var(--accent),var(--accent-dark));
  padding: 2px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 800; color: #fff;
}
.hero-eyebrow-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 30px); font-weight: 800; color: #fff;
  line-height: 1.18; margin-bottom: 7px;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-sub { font-size: 13px; color: rgba(220,200,255,.82); line-height: 1.55; max-width: 520px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; padding: 9px 20px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill); backdrop-filter: blur(6px);
  font-size: 13px; font-weight: 700; color: #fff;
  transition: background .2s;
}
.hero-cta:hover { background: rgba(255,255,255,.2); }
.hero-slide-dots {
  position: absolute; bottom: 13px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 4;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.28); transition: all .3s var(--ease); cursor: pointer;
}
.hero-dot.active { background: var(--accent); width: 20px; }

/* ================================================================
   PAGE INNER CONTENT
   ================================================================ */
.page-inner { flex: 1; overflow-y: auto; }

/* ── SEO Header ──────────────────────────────────────────────── */
.seo-header { padding: 4px 18px 12px; }
.logo-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.logo-image {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}
@media (max-width: 820px) {
  .logo-image {
    max-height: 120px;
  }
}
.seo-header h1 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 4px;
}
.seo-header .seo-desc { font-size: 12.5px; color: var(--text-3); }

/* ── Section Heading ─────────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 14px;
}

/* ── Tabs ─────────────────────────────────────────────────────── */
.tabs-bar {
  display: flex; gap: 0; padding: 0 18px;
  border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.tab-btn {
  padding: 10px 18px; font-size: 13.5px; font-weight: 600;
  color: var(--text-3); border-bottom: 2.5px solid transparent;
  transition: color .18s, border-color .18s; cursor: pointer;
}
.tab-btn:hover { color: var(--text-2); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .22s var(--ease) both; }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; }
}

/* ── Filter Bar ──────────────────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 0 18px 12px;
}
.filter-select {
  padding: 7px 12px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 12.5px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.filter-select:hover, .filter-select:focus { border-color: var(--border-bright); background: var(--surface-hover); }
.filter-select option { background: #1a1a2e; }
.toggle-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--text-2); cursor: pointer; user-select: none;
}
.toggle-track {
  width: 38px; height: 20px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12); position: relative;
  transition: background .2s; flex-shrink: 0;
}
.toggle-track.on { background: var(--accent); }
.toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: left .2s var(--ease);
  box-shadow: 0 1px 5px rgba(0,0,0,.4);
}
.toggle-track.on .toggle-thumb { left: calc(100% - 18px); }
.unfiltered-toggle {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--accent);
}

/* ── Tag Ribbon ──────────────────────────────────────────────── */
.tag-ribbon {
  display: flex; gap: 6px; padding: 0 18px 14px;
  overflow-x: auto; scrollbar-width: none;
}
.tag-ribbon::-webkit-scrollbar { display: none; }
.tag-pill {
  flex-shrink: 0; padding: 5px 13px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); cursor: pointer; white-space: nowrap;
  transition: all .18s var(--ease);
}
.tag-pill:hover { background: var(--surface-hover); color: var(--text); border-color: rgba(255,255,255,.14); }
.tag-pill.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; border-color: transparent;
  box-shadow: 0 3px 14px rgba(168,85,247,.35);
}
.tag-pill.nsfw-pill { color: #C084FC; border-color: rgba(168,85,247,.22); }

/* ================================================================
   CHARACTER CARDS
   ================================================================ */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px; padding: 0 18px 20px;
}
.char-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: transform .22s var(--ease), border-color .22s, box-shadow .22s;
  position: relative;
}
.char-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  box-shadow: 0 14px 40px rgba(168,85,247,.2);
}
.char-thumb {
  height: 192px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.char-emoji { font-size: 78px; transition: transform .3s var(--ease); z-index: 1; }
.char-card:hover .char-emoji { transform: scale(1.08); }
.char-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(5,2,15,.84);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; transition: opacity .22s var(--ease); z-index: 2;
}
.char-card:hover .char-hover-overlay { opacity: 1; }
.char-hover-desc { font-size: 11.5px; color: rgba(255,255,255,.88); text-align: center; line-height: 1.65; }
.char-views-badge {
  position: absolute; top: 8px; left: 8px; z-index: 3;
  background: rgba(0,0,0,.62); backdrop-filter: blur(6px);
  padding: 3px 8px; border-radius: var(--radius-pill);
  font-size: 10.5px; color: rgba(255,255,255,.8);
}
.char-likes-badge {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  background: rgba(168,85,247,.7); backdrop-filter: blur(6px);
  padding: 3px 8px; border-radius: var(--radius-pill);
  font-size: 10.5px; color: #fff;
}
.char-body { padding: 11px 12px; }
.char-title {
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px;
}
.char-sub {
  font-size: 11px; color: var(--text-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 8px;
}
.char-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.c-tag {
  font-size: 10.5px; padding: 2px 7px; border-radius: var(--radius-pill);
  background: rgba(168,85,247,.13); color: #C084FC;
  border: 1px solid rgba(168,85,247,.22);
}
.c-tag.pink-t { background: rgba(236,72,153,.12); color: #F472B6; border-color: rgba(236,72,153,.2); }
.c-tag.blue-t { background: rgba(59,130,246,.12); color: #93C5FD; border-color: rgba(59,130,246,.2); }
.c-tag.green-t { background: rgba(16,185,129,.12); color: #6EE7B7; border-color: rgba(16,185,129,.2); }
.c-tag.gold-t { background: rgba(245,158,11,.12); color: #FCD34D; border-color: rgba(245,158,11,.2); }
.char-footer { display: flex; justify-content: space-between; align-items: center; }
.char-creator { font-size: 10.5px; color: var(--text-3); }
.char-stars { font-size: 11px; color: var(--gold); }

/* ================================================================
   MEMORY CARDS
   ================================================================ */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 13px; padding: 0 18px 20px;
}
.mem-card {
  border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border); overflow: hidden; cursor: pointer;
  transition: transform .22s var(--ease), border-color .22s, box-shadow .22s;
}
.mem-card:hover { transform: translateY(-3px); border-color: var(--border-bright); box-shadow: 0 10px 32px rgba(168,85,247,.15); }
.mem-head { padding: 13px 15px 10px; border-bottom: 1px solid var(--border); }
.mem-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 5px; }
.mem-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--text); flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mem-count { font-size: 11px; color: var(--text-3); white-space: nowrap; }
.mem-meta { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-3); }
.mem-likes { margin-left: auto; color: var(--pink); }
.mem-preview {
  padding: 11px 15px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
  box-orient: vertical;
}

/* ================================================================
   CREATOR CARDS
   ================================================================ */
.creators-wrap { padding: 0 18px 20px; }
.creator-tab-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.creator-tab-btn {
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); transition: all .18s;
}
.creator-tab-btn:hover { background: var(--surface-hover); color: var(--text); }
.creator-tab-btn.active {
  background: var(--accent-dim); color: #D8B4FE;
  border-color: rgba(168,85,247,.28);
}
.creator-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; margin-bottom: 14px;
  transition: border-color .2s;
}
.creator-card:hover { border-color: var(--border-bright); }
.creator-top { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 13px; }
.creator-av {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 0 16px rgba(168,85,247,.35);
}
.creator-info { flex: 1; min-width: 0; }
.creator-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.creator-name { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--text); }
.btn-follow {
  padding: 6px 18px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
  transition: opacity .2s, transform .2s; box-shadow: 0 3px 12px rgba(168,85,247,.3);
}
.btn-follow:hover { opacity: .9; transform: translateY(-1px); }
.creator-stats { display: flex; gap: 12px; font-size: 11.5px; color: var(--text-3); margin-bottom: 5px; }
.creator-bio {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  box-orient: vertical;
}
.creator-chars-row { display: flex; gap: 9px; }
.creator-char-thumb {
  width: 76px; height: 90px; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 36px;
  cursor: pointer; transition: all .2s;
}
.creator-char-thumb:hover { border-color: var(--border-bright); transform: scale(1.04); }

/* ================================================================
   SEO BLOCKS
   ================================================================ */
.seo-blocks { padding: 8px 18px 28px; display: flex; flex-direction: column; gap: 13px; }
.seo-block {
  background: rgba(168,85,247,.045); border: 1px solid rgba(168,85,247,.1);
  border-radius: var(--radius); padding: 20px 22px;
}
.seo-block h2 {
  font-family: var(--font-display); font-size: 15.5px; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
}
.seo-block p { font-size: 13px; color: var(--text-3); line-height: 1.85; }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-section { padding: 0 18px 28px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 13px;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  transition: border-color .2s, transform .2s;
}
.review-card:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.review-top { display: flex; gap: 10px; align-items: center; margin-bottom: 9px; }
.reviewer-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(168,85,247,.18);
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 700; color: var(--text); }
.star-row { display: flex; gap: 1px; margin-top: 2px; }
.star-i { font-size: 11px; color: var(--gold); }
.star-i.empty { color: var(--text-3); }
.review-text { font-size: 12.5px; color: var(--text-2); line-height: 1.7; font-style: italic; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-section { padding: 0 18px 36px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 9px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(168,85,247,.25); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 18px; cursor: pointer; user-select: none;
}
.faq-question span {
  font-family: var(--font-display); font-size: 13.5px; font-weight: 700;
  color: var(--text); flex: 1; margin-right: 12px;
}
.faq-icon {
  color: var(--accent); font-size: 22px; font-weight: 300;
  transition: transform .28s var(--ease); flex-shrink: 0; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .36s var(--ease);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 18px 16px; font-size: 13px; color: var(--text-2); line-height: 1.82; }

/* ================================================================
   PRICING PAGE
   ================================================================ */
.pricing-hero { text-align: center; padding: 36px 20px 28px; }
.pricing-hero h1 {
  font-family: var(--font-display); font-size: clamp(24px,3.5vw,38px);
  font-weight: 800; color: var(--text); margin-bottom: 8px;
}
.pricing-hero p { font-size: 14px; color: var(--text-2); max-width: 500px; margin: 0 auto; }
.billing-switcher {
  display: flex; justify-content: center; gap: 5px; margin-bottom: 32px; padding: 0 18px;
}
.bill-btn {
  padding: 8px 20px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-2);
  cursor: pointer; transition: all .18s; position: relative;
}
.bill-btn:hover { background: var(--surface-hover); color: var(--text); }
.bill-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: transparent; color: #fff;
  box-shadow: var(--shadow-accent);
}
.bill-save-tag {
  position: absolute; top: -10px; right: -6px;
  background: var(--green); color: #fff;
  font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: var(--radius-pill);
}
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 14px; padding: 0 18px; max-width: 1060px; margin: 0 auto 32px;
}
.plan-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; position: relative;
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(0,0,0,.4); }
.plan-card.featured { border-color: rgba(245,158,11,.42); background: rgba(245,158,11,.06); }
.plan-popular-ribbon {
  position: absolute; top: 0; left: 0; right: 0;
  text-align: center; padding: 6px;
  background: linear-gradient(90deg,#F59E0B,#EA580C);
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  font-size: 11px; font-weight: 800; color: #fff;
}
.plan-header { margin-bottom: 14px; }
.plan-name-row { display: flex; justify-content: space-between; align-items: center; }
.plan-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); }
.plan-tag { font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: var(--radius-pill); }
.plan-tag.green-tag { background: rgba(16,185,129,.18); color: #34D399; }
.plan-price-block { margin: 12px 0 14px; }
.plan-price {
  font-family: var(--font-display); font-size: 38px; font-weight: 900; color: var(--text); line-height: 1;
}
.plan-price sup { font-size: 18px; vertical-align: top; margin-top: 6px; }
.plan-price sub { font-size: 14px; font-weight: 400; color: var(--text-3); }
.plan-yearly-note { font-size: 11px; color: var(--text-3); margin-top: 4px; }
.btn-plan {
  width: 100%; padding: 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 800; color: #fff; margin-bottom: 18px;
  transition: opacity .2s, transform .2s;
}
.btn-plan:hover { opacity: .88; transform: translateY(-1px); }
.btn-plan.purple-btn { background: linear-gradient(135deg,var(--accent),var(--accent-dark)); box-shadow: 0 4px 18px rgba(168,85,247,.3); }
.btn-plan.gold-btn { background: linear-gradient(135deg,#F59E0B,#EA580C); box-shadow: 0 4px 18px rgba(245,158,11,.3); }
.btn-plan.ghost-btn { background: rgba(255,255,255,.07); color: var(--text-2); }
.btn-plan.ghost-btn:hover { background: rgba(255,255,255,.12); color: var(--text); }
.plan-features-list { list-style: none; }
.plan-features-list li {
  display: flex; gap: 8px; padding: 6px 0;
  font-size: 12.5px; color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.plan-features-list li::before { content:'✦'; color:var(--accent); font-size:10px; flex-shrink:0; margin-top:2px; }

/* Chat package panel */
.chat-pkg-panel {
  max-width: 440px; margin: 0 auto 30px;
  background: linear-gradient(135deg,rgba(168,85,247,.12),rgba(124,58,237,.07));
  border: 1px solid rgba(168,85,247,.3);
  border-radius: var(--radius-lg); padding: 36px 32px; text-align: center;
}
.chat-pkg-icon { font-size: 54px; margin-bottom: 14px; }
.chat-pkg-price { font-family: var(--font-display); font-size: 42px; font-weight: 900; color: var(--text); }

/* ================================================================
   APP PAGE
   ================================================================ */
.app-hero-section { text-align: center; padding: 40px 20px 30px; }
.app-hero-icon { font-size: 68px; margin-bottom: 18px; }
.app-hero-section h1 {
  font-family: var(--font-display); font-size: clamp(22px,3vw,34px);
  font-weight: 800; color: var(--text); margin-bottom: 10px;
}
.app-hero-section p { font-size: 14px; color: var(--text-2); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.app-dl-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; padding: 0 18px; max-width: 700px; margin: 0 auto 26px;
}
.app-dl-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.app-dl-card:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.app-dl-icon { font-size: 48px; margin-bottom: 12px; }
.app-dl-card h2 { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 7px; }
.app-dl-card p { font-size: 12.5px; color: var(--text-2); margin-bottom: 15px; line-height: 1.6; }
.btn-dl { width: 100%; padding: 13px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 800; color: #fff; transition: transform .2s, filter .2s; }
.btn-dl:hover { transform: translateY(-1px); filter: brightness(1.1); }
.btn-android { background: linear-gradient(135deg,#3DDC84,#1A7A3C); box-shadow: 0 4px 18px rgba(61,220,132,.3); }
.btn-ios { background: linear-gradient(135deg,#6366F1,#4338CA); box-shadow: 0 4px 18px rgba(99,102,241,.3); }
.app-dl-meta { display: flex; justify-content: center; gap: 14px; margin-top: 10px; font-size: 11px; color: var(--text-3); }
.app-features-block {
  background: rgba(168,85,247,.05); border: 1px solid rgba(168,85,247,.12);
  border-radius: var(--radius-lg); padding: 24px;
  max-width: 700px; margin: 0 auto 28px;
}
.app-features-block h2 { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.app-feat-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(175px,1fr)); gap: 11px; }
.app-feat-item { background: var(--surface); border-radius: 11px; padding: 15px; }
.app-feat-icon { font-size: 26px; margin-bottom: 7px; }
.app-feat-item h3 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.app-feat-item p { font-size: 11.5px; color: var(--text-3); line-height: 1.5; }

/* ================================================================
   BONUS PAGE
   ================================================================ */
.bonus-coins-panel {
  background: rgba(245,158,11,.07); border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-lg); padding: 22px;
}
.bonus-coins-panel h2 { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.bonus-earn-row { display: flex; gap: 13px; background: rgba(255,255,255,.04); border-radius: 11px; padding: 13px; margin-bottom: 9px; }
.bonus-earn-icon { font-size: 26px; flex-shrink: 0; }
.bonus-earn-title { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.bonus-earn-desc { font-size: 12px; color: var(--text-3); line-height: 1.55; }
.bonus-note { font-size: 11.5px; color: var(--text-3); font-style: italic; margin-top: 12px; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.06); }
.bonus-diamonds-panel {
  background: rgba(96,165,250,.07); border: 1px solid rgba(96,165,250,.2);
  border-radius: var(--radius-lg); padding: 22px; margin-top: 13px;
}
.bonus-diamonds-panel h2 { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.bonus-diamonds-panel p { font-size: 13px; color: var(--text-2); line-height: 1.75; }
.achievements-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: 11px; }
.ach-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.ach-card.done { border-color: rgba(168,85,247,.3); }
.ach-card.locked { opacity: .45; }
.ach-card:not(.locked):hover { transform: translateY(-2px); }
.ach-icon { font-size: 34px; margin-bottom: 7px; }
.ach-title { font-size: 12.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.ach-desc { font-size: 11px; color: var(--text-3); margin-bottom: 9px; }
.ach-badge {
  display: inline-block; font-size: 10px; padding: 2px 9px;
  border-radius: var(--radius-pill);
}
.ach-badge.done { background: rgba(168,85,247,.2); color: #C084FC; }
.ach-badge.progress { background: rgba(245,158,11,.2); color: #FCD34D; }
.ach-badge.locked { background: rgba(255,255,255,.05); color: var(--text-3); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero {
  text-align: center; padding: 48px 20px 36px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,85,247,.12) 0%, transparent 60%);
}
.about-hero h1 { font-family: var(--font-display); font-size: clamp(24px,4vw,44px); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.about-hero p { font-size: 14.5px; color: var(--text-2); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.about-stats {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
  gap: 13px; padding: 28px 18px;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--accent); margin-bottom: 4px; }
.stat-label { font-size: 12.5px; color: var(--text-3); }
.about-values { padding: 0 18px 32px; }
.about-values h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 13px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.value-icon { font-size: 30px; margin-bottom: 10px; }
.value-title { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.value-desc { font-size: 12.5px; color: var(--text-2); line-height: 1.65; }

/* ================================================================
   STATIC CONTENT PAGES  (terms, privacy, faqs)
   ================================================================ */
.static-hero {
  padding: 36px 18px 28px;
}
.static-hero h1 {
  font-family: var(--font-display); font-size: clamp(22px,3.5vw,36px);
  font-weight: 800; color: var(--text); margin-bottom: 6px;
}
.static-hero .updated { font-size: 12px; color: var(--text-3); }
.static-content { padding: 0 18px 40px; max-width: 800px; }
.static-content h2 {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  color: var(--text); margin: 22px 0 9px;
}
.static-content p { font-size: 13.5px; color: var(--text-2); line-height: 1.85; margin-bottom: 8px; }
.static-content ul { margin: 8px 0 8px 16px; }
.static-content ul li { font-size: 13.5px; color: var(--text-2); line-height: 1.8; list-style: disc; margin-bottom: 3px; }
.static-content .highlight {
  background: rgba(168,85,247,.08); border: 1px solid rgba(168,85,247,.2);
  border-radius: var(--radius); padding: 18px 22px; margin: 16px 0;
}
.static-content .highlight h2 { margin-top: 0; }
.affiliate-commissions {
  width: 100%; border-collapse: collapse; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); margin: 14px 0;
}
.affiliate-commissions td {
  padding: 11px 16px; font-size: 13px; border-bottom: 1px solid var(--border);
}
.affiliate-commissions tr:first-child td { background: rgba(168,85,247,.14); font-weight: 700; color: #C084FC; }
.affiliate-commissions tr:nth-child(even) td { background: rgba(255,255,255,.025); }
.affiliate-commissions tr:last-child td { border-bottom: none; }

/* ================================================================
   AUTH / LOGIN MODAL
   ================================================================ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .28s var(--ease);
}
.modal-backdrop.show { opacity: 1; pointer-events: all; }
.modal-box {
  background: rgba(16,12,26,.97);
  border: 1px solid rgba(168,85,247,.32);
  border-radius: 22px; padding: 36px 30px;
  width: 100%; max-width: 418px;
  position: relative;
  box-shadow: 0 32px 90px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
  transform: translateY(22px) scale(.97);
  transition: transform .3s var(--ease);
}
.modal-backdrop.show .modal-box { transform: translateY(0) scale(1); }
.modal-close-btn {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.07); color: var(--text-2);
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.modal-close-btn:hover { background: rgba(255,255,255,.14); color: var(--text); }
.modal-logo-wrap { text-align: center; margin-bottom: 22px; }
.modal-logo-icon { font-size: 42px; margin-bottom: 8px; display: block; }
.modal-logo-wrap h2 {
  font-family: var(--font-display); font-size: 21px; font-weight: 900;
  color: var(--text); margin-bottom: 4px;
}
.modal-logo-wrap p { font-size: 13px; color: var(--text-3); }
.social-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 11px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); color: var(--text-2);
  font-size: 13.5px; font-weight: 600; margin-bottom: 9px;
  transition: background .15s, color .15s, border-color .15s;
}
.social-btn:hover { background: rgba(255,255,255,.1); color: var(--text); border-color: rgba(255,255,255,.2); }
.modal-divider {
  display: flex; align-items: center; gap: 11px; margin: 13px 0;
}
.modal-divider::before, .modal-divider::after {
  content:''; flex: 1; height: 1px; background: rgba(255,255,255,.08);
}
.modal-divider span { font-size: 11.5px; color: var(--text-3); }
.modal-input {
  width: 100%; padding: 11px 15px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: var(--text); font-size: 13.5px; margin-bottom: 11px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.modal-input:focus {
  border-color: var(--accent); background: rgba(168,85,247,.08);
  box-shadow: 0 0 0 3px rgba(168,85,247,.14);
}
.modal-input::placeholder { color: var(--text-3); }
.btn-modal-submit {
  width: 100%; padding: 13px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg,var(--accent),var(--accent-dark));
  font-size: 14px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 20px rgba(168,85,247,.38);
  transition: opacity .2s, transform .2s;
}
.btn-modal-submit:hover { opacity: .9; transform: translateY(-1px); }
.modal-terms {
  text-align: center; font-size: 11px; color: var(--text-3); margin-top: 13px; line-height: 1.65;
}
.modal-terms a { color: var(--accent); cursor: pointer; }

/* ================================================================
   RANKINGS PAGE
   ================================================================ */
.rankings-list { padding: 0 18px 30px; }
.rank-item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 15px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 9px; cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.rank-item:hover { transform: translateX(4px); border-color: var(--border-bright); }
.rank-num { font-family: var(--font-display); font-size: 22px; font-weight: 900; min-width: 34px; }
.rank-emoji { font-size: 40px; }
.rank-info { flex: 1; min-width: 0; }
.rank-title { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-creator-name { font-size: 11px; color: var(--text-3); }
.rank-score { text-align: right; }
.rank-score .score-num { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: #D8B4FE; }
.rank-score .score-label { font-size: 10px; color: var(--text-3); }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.breadcrumb ol {
  display: flex; gap: 8px; align-items: center;
  list-style: none;
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--text-3);
  font-size: 14px;
}
.breadcrumb a {
  color: var(--text-2);
  font-size: 12.5px;
  text-decoration: none;
  transition: color .15s;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb li:last-child a {
  color: var(--text);
  font-weight: 600;
}

/* ================================================================
   GENERIC UTILITY / HELPER CLASSES
   ================================================================ */
.page-content-wrapper { padding: 0; }
.section-pad { padding: 24px 18px; }
.page-header {
  padding: 28px 18px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.page-header h1 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--text); }
.page-header p { font-size: 13.5px; color: var(--text-2); margin-top: 5px; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-3); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.hidden { display: none !important; }
.pill-tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 11.5px; font-weight: 700;
}
.pill-new { background: rgba(16,185,129,.15); color: var(--green); border: 1px solid rgba(16,185,129,.25); }
.pill-hot { background: rgba(239,68,68,.15); color: #FCA5A5; border: 1px solid rgba(239,68,68,.25); }
.pill-pro { background: rgba(168,85,247,.18); color: #D8B4FE; border: 1px solid rgba(168,85,247,.3); }

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 820px) {
  :root { --sidebar-w: 0px; }
  #sidebar { transform: translateX(-216px); width: 216px; }
  #sidebar.open { transform: translateX(0); }
  .main-wrap { margin-left: 0; }
  #hamburger { display: flex; }
  .topbar-icons { display: none; }
  .hero-chars { display: none; }
  .hero-body { padding-left: 18px; padding-right: 18px; }
  .char-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 12px 16px; }
  .filter-bar { padding: 0 12px 10px; }
  .tag-ribbon { padding: 0 12px 12px; }
  .tabs-bar { padding: 0 12px; }
  .seo-header { padding: 4px 12px 10px; }
  .hero-banner { margin: 12px 12px; min-height: 160px; }
  .memory-grid { grid-template-columns: 1fr; padding: 0 12px 16px; }
  .creators-wrap { padding: 0 12px 16px; }
  .seo-blocks { padding: 6px 12px 24px; }
  .reviews-section { padding: 0 12px 24px; }
  .faq-section { padding: 0 12px 30px; }
  .plans-grid { grid-template-columns: 1fr; padding: 0 14px; }
  .app-dl-grid { grid-template-columns: 1fr; padding: 0 14px; }
  .rankings-list { padding: 0 12px 24px; }
  .achievements-grid { grid-template-columns: repeat(2,1fr); }
  .static-content { padding: 0 14px 32px; }
  .static-hero { padding: 24px 14px 20px; }
  .section-pad { padding: 16px 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .billing-switcher { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 16px; }
  .modal-box { padding: 28px 18px; }
  .plans-grid { gap: 10px; }
  .chat-pkg-panel { padding: 24px 18px; }
  .char-thumb { height: 150px; }
  .char-emoji { font-size: 60px; }
}

/* ================================================================
   PAGE TRANSITIONS
   ================================================================ */
.page-section { animation: fadeUp .24s var(--ease) both; }
.page-section:nth-child(2) { animation-delay: .05s; }
.page-section:nth-child(3) { animation-delay: .1s; }
.page-section:nth-child(4) { animation-delay: .15s; }

/* Inline page active class */
.page { display: none; }
.page.active { display: block; }
