/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #6c5ce7;
  --primary-dark: #5a4bd1;
  --primary-light: #a29bfe;
  --accent: #fd79a8;
  --bg: #0f0f1a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --text: #e0e0e0;
  --text-muted: #a8a8b8;
  --text-light: #d8d8e8;
  --border: #2a2a3e;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,.3);
  --transition: .3s ease;
  --max-w: 1280px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== Container ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ===== Header / Navbar ===== */
.header {
  background: rgba(15,15,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.header .logo-wrap {
  display: flex; align-items: center; gap: .6rem;
}
.logo-img {
  height: 32px; width: auto; border-radius: 4px; object-fit: contain;
}
.logo {
  font-size: 1.6rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: .5rem;
}
.logo span { color: var(--primary-light); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a { color: var(--text-light); font-size: .95rem; font-weight: 500; position: relative; padding: .3rem 0; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #fff; font-weight: 700; }
.nav-links a.active::after { width: 100%; background: var(--accent); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; position: relative; z-index: 101; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #1a1a2e 100%);
  padding: 5rem 0 4rem; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(108,92,231,.15) 0%, transparent 70%);
  animation: heroPulse 8s ease-in-out infinite;
}
@keyframes heroPulse { 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.1); } }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--primary-light); }
.hero p { font-size: 1.15rem; color: var(--text-light); max-width: 600px; margin: 0 auto 2rem; }
.hero-btn {
  display: inline-block; padding: .85rem 2.4rem; background: var(--primary); color: #fff;
  border-radius: 50px; font-weight: 600; font-size: 1rem; transition: all var(--transition);
  border: none; cursor: pointer;
}
.hero-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108,92,231,.4); }

/* ===== Section ===== */
.section { padding: 4rem 0; }
.section-title {
  font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: .5rem;
}
.section-desc { color: var(--text-muted); margin-bottom: 2rem; }

/* ===== Game Cards ===== */
.game-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.game-card {
  background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition); cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px); border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(108,92,231,.2);
}
.game-card-img {
  width: 100%; height: 180px; object-fit: cover;
  background: linear-gradient(135deg, #2d1b69, #1a1a2e);
}
.game-card-body { padding: 1.2rem; }
.game-card-title { font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: .4rem; }
.game-card-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: .8rem; line-height: 1.5; }
.game-card-tag {
  display: inline-block; padding: .2rem .6rem; background: rgba(108,92,231,.15);
  color: var(--primary-light); border-radius: 20px; font-size: .75rem; font-weight: 500;
}
.game-card-play {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem;
  padding: .5rem 1.2rem; background: var(--primary); color: #fff; border-radius: 50px;
  font-size: .85rem; font-weight: 600; transition: all var(--transition);
}
.game-card-play:hover { background: var(--primary-dark); color: #fff; }

/* ===== Tags ===== */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .8rem; }
.tag-item {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.4rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text-light); font-size: .9rem; font-weight: 500;
  transition: all var(--transition); cursor: pointer;
}
.tag-item:hover, .tag-item.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.tag-count {
  background: rgba(255,255,255,.15); padding: .1rem .5rem; border-radius: 10px;
  font-size: .75rem;
}
.tag-item:hover .tag-count, .tag-item.active .tag-count {
  background: rgba(255,255,255,.25);
}

/* ===== List / Category ===== */
.list-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.list-filter { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-btn {
  padding: .5rem 1.2rem; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-light); border-radius: 50px; font-size: .85rem; cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== Content Page ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
  padding: 3.5rem 0; text-align: center;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.page-hero p { color: var(--text-light); font-size: 1rem; }

/* ===== Tags Hero Section ===== */
.hero-section {
  position: relative; padding: 5rem 0;
  background: #0c0c0c;
  overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px, rgba(0,0,0,.15) 2px, rgba(0,0,0,.15) 4px
  );
  pointer-events: none; z-index: 1;
}
.hero-section::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(0,255,65,.06) 0%, transparent 60%);
  pointer-events: none; z-index: 1;
}
.hero-container {
  width: 100%; padding: 0 1.5rem;
  position: relative; z-index: 2;
}
.hero-content {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.hero-tagline {
  font-size: .7rem; font-weight: 900; color: #00ff41;
  letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Courier New', monospace;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: 2.4rem; font-weight: 900; color: #00ff41;
  letter-spacing: 4px; line-height: 1.2;
  font-family: 'Courier New', monospace;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #00ff41, 0 0 30px rgba(0,255,65,.4), 0 0 60px rgba(0,255,65,.15);
}
.hero-description {
  font-size: .95rem; color: #c8ffc8;
  line-height: 1.7; margin-bottom: .5rem;
  font-family: 'Courier New', monospace; letter-spacing: .5px;
}
.hero-subdescription {
  font-size: .8rem; color: rgba(255,255,255,.9);
  line-height: 1.7; margin-bottom: 2.5rem;
  font-family: 'Courier New', monospace; letter-spacing: .5px;
}
.hero-stats {
  display: flex; justify-content: center; gap: 3rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center; margin-bottom: 0;
  padding: 1rem 1.5rem;
  background: rgba(0,255,65,.1);
  border: 1px solid rgba(0,255,65,.35);
  border-radius: 2px;
}
.stat-number {
  display: block; font-size: 1.6rem; font-weight: 900;
  color: #00ff41; letter-spacing: 2px;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 8px rgba(0,255,65,.5);
}
.stat-label {
  display: block; font-size: .6rem; color: #88ff88;
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Courier New', monospace;
  margin-top: .3rem;
}
.hero-actions { margin-top: 2.5rem; }
.hero-actions .btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 2rem; font-size: .75rem; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Courier New', monospace;
  border-radius: 2px; text-decoration: none;
  transition: all .2s step-end;
}
.hero-actions .btn-primary {
  background: #00ff41; color: #0c0c0c;
  border: 2px solid #00ff41;
}
.hero-actions .btn-primary:hover {
  background: #fff; border-color: #fff;
  box-shadow: 0 0 15px rgba(0,255,65,.5);
  transform: translateY(-2px);
}
.content-body { max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem; }
.content-body h2 { font-size: 1.5rem; color: #fff; margin: 2rem 0 1rem; }
.content-body h3 { font-size: 1.2rem; color: #fff; margin: 1.5rem 0 .8rem; }
.content-body p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.content-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-body ul li { color: var(--text-light); margin-bottom: .5rem; list-style: disc; }
.content-body a { color: var(--primary-light); }

/* ===== Contact Form ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .9rem; font-weight: 500; color: var(--text-light); }
.form-group input, .form-group textarea, .form-group select {
  padding: .8rem 1rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-size: .95rem;
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.submit-btn {
  padding: .85rem 2rem; background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius); font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem;
  background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border);
}
.contact-info-icon {
  width: 44px; height: 44px; background: rgba(108,92,231,.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--primary-light); font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-text h4 { color: #fff; font-size: .95rem; margin-bottom: .2rem; }
.contact-info-text p { color: var(--text-muted); font-size: .85rem; }

/* ===== Pagination ===== */
.pagination-bar { margin-top: 2.5rem; }
.pagination-container { display: flex; justify-content: center; }
.pagination-container nav { display: inline-block; }
.pagination-list {
  display: flex; align-items: center; gap: .4rem;
  list-style: none; margin: 0; padding: 0;
}
.pagination-item { display: inline-block; }
.pagination-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 .6rem;
  background: #141414; border: 2px solid #222; border-radius: 2px;
  color: #00ff41; font-size: .75rem; font-weight: 800;
  font-family: 'Courier New', monospace; letter-spacing: 1px;
  text-decoration: none; cursor: pointer;
  transition: all .2s step-end;
}
.pagination-link:hover {
  background: #00ff41; color: #0c0c0c;
  border-color: #00ff41;
  box-shadow: 0 0 10px rgba(0,255,65,.3);
}
.pagination-link.current,
.pagination-item.active .pagination-link {
  background: #00ff41; color: #0c0c0c;
  border-color: #00ff41;
  text-shadow: none;
  box-shadow: 0 0 8px rgba(0,255,65,.4);
}
.pagination-link.prev,
.pagination-link.next {
  font-size: 1rem; padding: 0 .8rem;
}
.pagination-link.disabled {
  color: #333; border-color: #1a1a1a; cursor: not-allowed;
  pointer-events: none;
}
.pagination {
  display: flex; justify-content: center; align-items: center; gap: .5rem;
  margin-top: 3rem;
}
.page-btn {
  padding: .5rem 1rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-light); font-size: .9rem; cursor: pointer;
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== Footer ===== */
.footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem; margin-top: 2rem;
  margin-top: 0!important;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col p { color: var(--text-muted); font-size: .85rem; line-height: 1.7; }
.footer-col a { display: block; color: var(--text-muted); font-size: .85rem; margin-bottom: .5rem; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: .8rem; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(108,92,231,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary-light); font-size: .9rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
  background: var(--primary); color: #fff; border: none; border-radius: 50%;
  display: none; align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.2rem; box-shadow: var(--shadow); z-index: 99; transition: all var(--transition);
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
.back-to-top.show { display: flex; }

/* =========================================================
   MODULE 1 — Cinema Spotlight (Full-bleed hero + sidebar)
   ========================================================= */
.spotlight {
  padding: 0;
  background: #080810;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(231,76,60,.12) 0%, transparent 70%);
  pointer-events: none;
}
.spotlight-main {
  max-width: var(--max-w); margin: 0 auto; padding: 3rem 1.5rem;
  display: grid; grid-template-columns: 1fr 380px; gap: 1.5rem;
  position: relative; z-index: 1;
  overflow: hidden;
}
/* Hero Card */
.spotlight-hero {
  position: relative; border-radius: 20px; overflow: hidden;
  display: flex; min-height: 440px; cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
  width: 100%; box-sizing: border-box;
}
.spotlight-hero:hover { transform: scale(1.01); box-shadow: 0 20px 60px rgba(231,76,60,.2); }
.spotlight-hero-bg {
  position: absolute; inset: 0;
  transition: transform 6s ease;
}
.spotlight-hero:hover .spotlight-hero-bg { transform: scale(1.08); }
.spotlight-hero-emoji {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 8rem; opacity: .12; pointer-events: none;
  filter: blur(2px);
}
.spotlight-hero-content {
  position: relative; z-index: 2; margin-top: auto;
  padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.9) 100%);
  width: 100%; max-width: 100%; box-sizing: border-box;
}
.spotlight-badge {
  display: inline-block; width: fit-content;
  padding: .35rem 1rem; border-radius: 4px;
  background: #e74c3c; color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: 2px;
  margin-bottom: 1rem;
}
.spotlight-hero-content h2 {
  font-size: 2.8rem; font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: .8rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.spotlight-hero-content p {
  font-size: 1rem; color: rgba(255,255,255,.9);
  max-width: 420px; line-height: 1.6; margin-bottom: 1.5rem;
}
.spotlight-play-btn {
  display: inline-flex; width: fit-content; align-items: center; gap: .5rem;
  padding: .8rem 2rem; background: #e74c3c; color: #fff;
  border-radius: 50px; font-weight: 700; font-size: .9rem;
  letter-spacing: 1px;
  transition: all .3s ease;
}
.spotlight-hero:hover .spotlight-play-btn { background: #c0392b; transform: translateX(4px); }

/* Sidebar */
.spotlight-sidebar { display: flex; flex-direction: column; gap: .6rem; min-width: 0; overflow: hidden; }
.spotlight-side-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1rem; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06); border-radius: 12px;
  cursor: pointer; transition: all .3s ease;
  min-width: 0; box-sizing: border-box;
}
.spotlight-side-item:hover {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12);
  transform: translateX(6px);
}
.spotlight-side-rank {
  font-size: .75rem; font-weight: 800; color: rgba(255,255,255,.4);
  letter-spacing: 1px; min-width: 22px;
}
.spotlight-side-item:nth-child(1) .spotlight-side-rank { color: #e74c3c; }
.spotlight-side-item:nth-child(2) .spotlight-side-rank { color: #3498db; }
.spotlight-side-item:nth-child(3) .spotlight-side-rank { color: #9b59b6; }
.spotlight-side-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: rgba(255,255,255,.4);
}
.spotlight-side-text { flex: 1; min-width: 0; }
.spotlight-side-text h4, .spotlight-side-text h3 { font-size: .85rem; font-weight: 600; color: #fff; margin-bottom: .1rem; }
.spotlight-side-text span { font-size: .7rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.spotlight-side-arrow {
  font-size: 1rem; color: rgba(255,255,255,.35);
  transition: all .3s ease;
}
.spotlight-side-item:hover .spotlight-side-arrow { color: #e74c3c; transform: translateX(4px); }

/* =========================================================
   MODULE 2 — Neon Grid (Cyberpunk glowing cards)
   ========================================================= */
.neon-section {
  padding: 5rem 0;
  background: #0a0a14;
  position: relative;
  overflow: hidden;
}
.neon-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(108,92,231,.03) 50px, rgba(108,92,231,.03) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(108,92,231,.03) 50px, rgba(108,92,231,.03) 51px);
  pointer-events: none;
}
.neon-section::after {
  content: '';
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(108,92,231,.1) 0%, transparent 70%);
  pointer-events: none;
}
.neon-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem; position: relative; z-index: 1;
}
.neon-title-wrap {}
.neon-label {
  display: inline-block; padding: .25rem .8rem; border-radius: 3px;
  background: linear-gradient(135deg, #00f5ff, #6c5ce7);
  color: #0a0a14; font-size: .65rem; font-weight: 800;
  letter-spacing: 2px; margin-bottom: .6rem;
}
.neon-title {
  font-size: 2.2rem; font-weight: 800; color: #fff;
  text-shadow: 0 0 30px rgba(0,245,255,.3), 0 0 60px rgba(108,92,231,.2);
}
.neon-link {
  color: #00f5ff; font-weight: 600; font-size: .9rem;
  display: flex; align-items: center; gap: .3rem;
  transition: all .3s ease;
}
.neon-link:hover { color: #fff; text-shadow: 0 0 10px #00f5ff; }
.neon-link span { transition: transform .3s ease; }
.neon-link:hover span { transform: translateX(4px); }

.neon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; position: relative; z-index: 1;
}
.neon-card {
  position: relative; border-radius: 16px; overflow: hidden;
  background: #12121e; border: 1px solid rgba(108,92,231,.15);
  cursor: pointer; transition: all .4s ease; display: block;
}
.neon-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--glow);
  box-shadow: 0 0 20px color-mix(in srgb, var(--glow) 30%, transparent),
              0 20px 40px rgba(0,0,0,.4);
}
.neon-card-glow {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 3px; border-radius: 0 0 4px 4px;
  background: var(--glow);
  box-shadow: 0 0 15px var(--glow), 0 0 30px color-mix(in srgb, var(--glow) 40%, transparent);
  opacity: 0; transition: opacity .4s ease;
}
.neon-card:hover .neon-card-glow { opacity: 1; }
.neon-card-thumb {
  width: 100%; height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,.3);
  transition: all .4s ease;
}
.neon-card:hover .neon-card-thumb { transform: scale(1.05); }
.neon-card-body { padding: 1.2rem 1.4rem 1.5rem; }
.neon-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.neon-card-tag {
  padding: .2rem .65rem; border-radius: 3px;
  background: color-mix(in srgb, var(--tag-color) 15%, transparent);
  color: var(--tag-color); font-size: .65rem; font-weight: 800;
  letter-spacing: 1.5px;
}
.neon-card-stars { color: #f1c40f; font-size: .7rem; letter-spacing: 1px; }
.neon-card-body h3 {
  font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .4rem;
  transition: text-shadow .3s ease;
}
.neon-card:hover .neon-card-body h3 { text-shadow: 0 0 10px rgba(255,255,255,.3); }
.neon-card-body p { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.neon-card-shine {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
  transition: left .6s ease;
}
.neon-card:hover .neon-card-shine { left: 150%; }

/* =========================================================
   MODULE 3 — Retro Arcade (8-bit / CRT style)
   ========================================================= */
.retro-section {
  padding: 5rem 0;
  background: #0c0c0c;
  position: relative;
  overflow: hidden;
}
.retro-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px, rgba(0,0,0,.15) 2px, rgba(0,0,0,.15) 4px
  );
  pointer-events: none; z-index: 1;
}
.retro-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem; position: relative; z-index: 2;
}
.retro-title-wrap { display: flex; align-items: center; gap: .8rem; }
.retro-blink {
  color: #00ff41; font-size: 1.2rem;
  animation: retroBlink 1s step-end infinite;
}
@keyframes retroBlink { 0%,100%{ opacity:1; } 50%{ opacity:0; } }
.retro-title {
  font-size: 2rem; font-weight: 900; color: #00ff41;
  letter-spacing: 4px;
  text-shadow: 0 0 10px #00ff41, 0 0 30px rgba(0,255,65,.4), 0 0 60px rgba(0,255,65,.2);
  font-family: 'Courier New', monospace;
}
.retro-link {
  color: #00ff41; font-weight: 700; font-size: .85rem;
  letter-spacing: 2px; font-family: 'Courier New', monospace;
  transition: all .3s ease;
}
.retro-link:hover { color: #fff; text-shadow: 0 0 10px #00ff41; }

.retro-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; position: relative; z-index: 2;
}
.retro-card {
  position: relative; border-radius: 4px; overflow: hidden;
  background: #141414; border: 2px solid #222;
  cursor: pointer; transition: all .2s step-end; display: block;
  image-rendering: pixelated;
}
.retro-card:hover {
  border-color: #00ff41;
  box-shadow: 0 0 10px rgba(0,255,65,.3), inset 0 0 10px rgba(0,255,65,.05);
  transform: translateY(-4px);
}
.retro-crown {
  position: absolute; top: 6px; right: 6px; font-size: 1.2rem; z-index: 3;
  filter: drop-shadow(0 0 4px rgba(0,0,0,.8));
}
.retro-card--gold { border-color: #f1c40f; }
.retro-card--gold:hover { border-color: #f1c40f; box-shadow: 0 0 15px rgba(241,196,15,.3), inset 0 0 10px rgba(241,196,15,.05); }
.retro-card--silver { border-color: #95a5a6; }
.retro-card--silver:hover { border-color: #bdc3c7; box-shadow: 0 0 15px rgba(189,195,199,.3), inset 0 0 10px rgba(189,195,199,.05); }
.retro-card--bronze { border-color: #e67e22; }
.retro-card--bronze:hover { border-color: #e67e22; box-shadow: 0 0 15px rgba(230,126,34,.3), inset 0 0 10px rgba(230,126,34,.05); }
.retro-visual {
  width: 100%; height: 120px; display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: rgba(255,255,255,.3);
  border-bottom: 2px solid #222;
}
.retro-info { padding: .8rem; }
.retro-info h3 {
  font-size: .8rem; font-weight: 800; color: #00ff41; letter-spacing: 2px;
  font-family: 'Courier New', monospace;
  margin-bottom: .4rem;
  text-shadow: 0 0 6px rgba(0,255,65,.3);
}
.retro-meta {
  display: flex; justify-content: space-between; align-items: center;
}
.retro-genre {
  padding: .15rem .5rem; background: rgba(0,255,65,.1); color: #00ff41;
  border: 1px solid rgba(0,255,65,.2); border-radius: 2px;
  font-size: .6rem; font-weight: 800; letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}
.retro-plays {
  font-size: .6rem; color: rgba(255,255,255,.6); font-family: 'Courier New', monospace;
  letter-spacing: 1px;
}
.retro-score {
  position: absolute; top: 8px; left: 8px;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.7); border: 1px solid #00ff41; border-radius: 2px;
  color: #00ff41; font-size: .65rem; font-weight: 900;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 4px rgba(0,255,65,.5);
}
.retro-play-btn {
  display: inline-block;
  margin-top: .6rem;
  padding: .35rem .9rem;
  background: #00ff41;
  color: #0c0c0c;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: 2px;
  font-family: 'Courier New', monospace;
  border-radius: 2px;
  text-align: center;
  transition: all .2s step-end;
}
.retro-card:hover .retro-play-btn {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,255,65,.5);
}

/* =========================================================
   Game Detail Page
   ========================================================= */
.detail-hero {
  position: relative;
  min-height: 500px;
  background: #080810;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(30px) brightness(.3);
  transform: scale(1.15);
}
.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,16,.5) 0%, rgba(8,8,16,.95) 100%);
}
.detail-hero-content {
  position: relative; z-index: 2;
  padding: 2rem 1.5rem 3rem;
}

/* Breadcrumb */
.detail-breadcrumb { margin-bottom: 1.5rem; }
.detail-breadcrumb-list {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .5rem; list-style: none; margin: 0; padding: 0;
}
.detail-breadcrumb-item a {
  color: #00ff41; font-family: 'Courier New', monospace;
  font-size: .75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: all .2s step-end;
}
.detail-breadcrumb-item a:hover { color: #fff; text-shadow: 0 0 8px #00ff41; }
.detail-breadcrumb-item span[aria-current="page"] {
  color: rgba(255,255,255,.6); font-family: 'Courier New', monospace;
  font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.detail-breadcrumb-sep {
  color: rgba(255,255,255,.35); font-size: .75rem;
  font-family: 'Courier New', monospace;
}

/* Hero Grid */
.detail-hero-grid {
  display: grid; grid-template-columns: 400px 1fr; gap: 2.5rem;
  align-items: start;
}
.detail-hero-image {
  border-radius: 4px; overflow: hidden;
  border: 2px solid #00ff41;
  box-shadow: 0 0 20px rgba(0,255,65,.2), inset 0 0 10px rgba(0,255,65,.05);
  image-rendering: pixelated;
  transition: box-shadow .3s ease;
}
.detail-hero-image:hover {
  box-shadow: 0 0 30px rgba(0,255,65,.4), inset 0 0 15px rgba(0,255,65,.1);
}
.detail-hero-image img { width: 100%; display: block; }

.detail-hero-info { padding-top: .5rem; }
.detail-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.detail-tag {
  padding: .2rem .7rem; background: rgba(0,255,65,.1); color: #00ff41;
  border: 1px solid rgba(0,255,65,.25); border-radius: 2px;
  font-size: .65rem; font-weight: 800; letter-spacing: 2px;
  font-family: 'Courier New', monospace; text-transform: uppercase;
}
.detail-title {
  font-size: 2.4rem; font-weight: 900; color: #fff;
  letter-spacing: 3px; line-height: 1.15;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 10px rgba(0,255,65,.3), 0 0 40px rgba(0,255,65,.1);
  margin-bottom: .8rem;
}
.detail-stars {
  color: #f1c40f; font-size: .85rem; letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Game Meta Info (Developer / Published / Updated) */
.detail-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.2rem;
  padding: .9rem 1.2rem;
  background: rgba(0,255,65,.03);
  border: 1px solid rgba(0,255,65,.1);
  border-radius: 4px;
}
.game-developer,
.game-publish-date,
.game-update-time {
  display: flex; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.75); font-size: .75rem;
  font-family: 'Courier New', monospace; letter-spacing: .5px;
}
.game-developer .meta-label,
.game-publish-date .meta-label,
.game-update-time .meta-label {
  color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase;
  font-size: .65rem; font-weight: 700;
}
.game-developer .meta-label::after,
.game-publish-date .meta-label::after,
.game-update-time .meta-label::after {
  content: ':'; margin-left: 1px;
}
.detail-desc {
  color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.7;
  max-width: 600px; margin-bottom: 1.5rem;
}

/* Actions */
.detail-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.detail-play-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2.4rem; background: #00ff41; color: #0c0c0c;
  border: none; border-radius: 2px; cursor: pointer;
  font-size: .85rem; font-weight: 900; letter-spacing: 3px;
  font-family: 'Courier New', monospace;
  transition: all .2s step-end;
  text-decoration: none;
}
.detail-play-btn:hover {
  background: #fff; box-shadow: 0 0 20px rgba(0,255,65,.5);
  transform: translateY(-2px);
}
.detail-play-icon { font-size: 1rem; }

.detail-share {
  display: flex; align-items: center; gap: .6rem;
}
.detail-share-label {
  color: rgba(255,255,255,.6); font-size: .7rem; font-weight: 800;
  letter-spacing: 2px; font-family: 'Courier New', monospace;
  text-transform: uppercase;
}
.detail-share-link {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px; color: #00ff41; font-size: .8rem;
  transition: all .2s step-end; text-decoration: none;
}
.detail-share-link:hover {
  background: rgba(0,255,65,.15); border-color: #00ff41;
  box-shadow: 0 0 8px rgba(0,255,65,.3); color: #fff;
}

/* Content Section */
.detail-content-section {
  padding: 3rem 0;
  background: #0a0a12;
  position: relative;
}
.detail-content-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px, rgba(0,0,0,.1) 2px, rgba(0,0,0,.1) 4px
  );
  pointer-events: none;
}
.detail-content-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem;
  position: relative; z-index: 1;
}
.detail-content-main {}
.detail-section-heading {
  display: flex; align-items: center; gap: .8rem;
  font-size: 1.4rem; font-weight: 900; color: #00ff41;
  letter-spacing: 3px; font-family: 'Courier New', monospace;
  text-shadow: 0 0 8px rgba(0,255,65,.3);
  margin: 2rem 0 1rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(0,255,65,.15);
}
.detail-heading-blink {
  font-size: 1rem; color: #00ff41;
  animation: retroBlink 1s step-end infinite;
}
.detail-text {
  color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.8;
}
.detail-text p { margin-bottom: 1rem; }

/* FAQ Section */
.faq-section {
  margin: 2rem 0;
  border: 1px solid rgba(0,255,65,.12);
  border-radius: 4px;
  background: rgba(0,255,65,.015);
  overflow: hidden;
  position: relative; z-index: 2;
}
.faq-title {
  display: flex; align-items: center; gap: .6rem;
  padding: .9rem 1.2rem;
  font-size: 1.2rem; font-weight: 900; color: #00ff41;
  letter-spacing: 3px; font-family: 'Courier New', monospace;
  text-shadow: 0 0 6px rgba(0,255,65,.25);
  cursor: pointer; user-select: none;
  background: rgba(0,255,65,.03);
  border-bottom: 1px solid rgba(0,255,65,.08);
  transition: background .2s;
}
.faq-title:hover {
  background: rgba(0,255,65,.06);
}
.faq-section-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  font-size: .7rem; color: #00ff41;
  transition: transform .25s ease;
}
.faq-section.open .faq-section-toggle {
  transform: rotate(90deg);
}
.faq-list {
  padding: 0;
  overflow: hidden;
  max-height: 1500px;
  transition: max-height .4s ease;
}
.faq-section:not(.open) .faq-list {
  max-height: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  position: relative;
  padding: .85rem 1.2rem .85rem 2.2rem;
  font-size: .85rem; font-weight: 700; color: #e8e8e8;
  cursor: pointer; user-select: none;
  font-family: 'Courier New', monospace; letter-spacing: .5px;
  transition: color .2s, background .2s;
}
.faq-question::before {
  content: '>'; position: absolute; left: 1rem; top: .85rem;
  color: #00ff41; font-weight: 900; font-size: .75rem;
  transition: transform .25s ease;
}
.faq-item.open .faq-question::before {
  transform: rotate(90deg);
}
.faq-question:hover {
  color: #00ff41; background: rgba(0,255,65,.03);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.2rem 0 2.2rem;
  color: rgba(255,255,255,.65); font-size: .82rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 300px; padding: 0 1.2rem 1rem 2.2rem;
}

/* Sidebar Info Card */
.detail-info-card {
  background: #0c0c0c; border: 2px solid #222; border-radius: 4px;
  padding: 1.5rem; position: sticky; top: 80px;
}
.detail-info-title {
  font-size: .85rem; font-weight: 900; color: #00ff41;
  letter-spacing: 3px; font-family: 'Courier New', monospace;
  margin-bottom: 1.2rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(0,255,65,.15);
}
.detail-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
}
.detail-info-label {
  color: rgba(255,255,255,.6); font-size: .7rem; font-weight: 700;
  letter-spacing: 1px; font-family: 'Courier New', monospace;
  text-transform: uppercase;
}
.detail-info-value {
  color: #fff; font-size: .75rem; font-family: 'Courier New', monospace;
}
.detail-sidebar-play-btn {
  display: block; width: 100%; margin-top: 1.2rem;
  padding: .7rem; background: #00ff41; color: #0c0c0c;
  border: none; border-radius: 2px; text-align: center;
  font-size: .75rem; font-weight: 900; letter-spacing: 3px;
  font-family: 'Courier New', monospace; cursor: pointer;
  text-decoration: none;
  transition: all .2s step-end;
}
.detail-sidebar-play-btn:hover {
  background: #fff; box-shadow: 0 0 15px rgba(0,255,65,.5);
}

/* Empty State */
.detail-empty {
  padding: 6rem 0;
  background: #0a0a12;
}
.detail-empty-inner { text-align: center; }
.detail-empty-icon {
  font-size: 4rem; color: rgba(0,255,65,.2); margin-bottom: 1.5rem;
}
.detail-empty-inner h2 {
  font-size: 1.6rem; font-weight: 900; color: #00ff41;
  letter-spacing: 3px; font-family: 'Courier New', monospace;
  margin-bottom: 1rem;
}
.detail-empty-inner p {
  color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.6; margin-bottom: 2rem;
}
.detail-empty-actions { display: flex; justify-content: center; gap: 1rem; }
.detail-empty-btn-back {
  padding: .7rem 1.8rem; background: transparent;
  border: 2px solid rgba(0,255,65,.3); border-radius: 2px;
  color: #00ff41; font-size: .75rem; font-weight: 900; letter-spacing: 2px;
  font-family: 'Courier New', monospace; cursor: pointer;
  text-decoration: none; transition: all .2s step-end;
}
.detail-empty-btn-back:hover {
  border-color: #00ff41; box-shadow: 0 0 10px rgba(0,255,65,.3);
}

/* Game Overlay */
.game-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.95); display: flex;
  align-items: center; justify-content: center;
}
.game-overlay-inner {
  position: relative; width: 100%; height: 100%;
}
.game-overlay-close {
  position: absolute; top: 15px; right: 15px; z-index: 10001;
  background: #00ff41; color: #0c0c0c; border: none; padding: .5rem 1.2rem;
  font-size: .7rem; font-weight: 900; letter-spacing: 2px;
  font-family: 'Courier New', monospace; cursor: pointer; border-radius: 2px;
  transition: all .2s step-end;
}
.game-overlay-close:hover { background: #fff; box-shadow: 0 0 15px rgba(0,255,65,.5); }
.game-overlay-iframe {
  width: 100%; height: 100%; border: none; background: #000;
}

/* ===== Cookie Consent ===== */
#cookieConsentWrap {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: #0c0c0c; border-top: 2px solid #00ff41;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,255,65,.15);
  animation: cookieSlideUp .4s ease-out;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookieConsentWrap p {
  margin: 0 0 1rem 0; font-size: .8rem; color: rgba(255,255,255,.8);
  line-height: 1.6; font-family: 'Courier New', monospace;
  letter-spacing: .5px;
}
.cookie-btn-group {
  display: flex; gap: .8rem; flex-wrap: wrap;
}
.cookie-accept, .cookie-decline {
  padding: .5rem 1.4rem; font-size: .7rem; font-weight: 900;
  letter-spacing: 2px; font-family: 'Courier New', monospace;
  text-transform: uppercase; cursor: pointer; border-radius: 2px;
  transition: all .2s step-end;
}
.cookie-accept {
  background: #00ff41; color: #0c0c0c; border: 2px solid #00ff41;
}
.cookie-accept:hover {
  background: #fff; border-color: #fff;
  box-shadow: 0 0 15px rgba(0,255,65,.5);
}
.cookie-decline {
  background: transparent; color: #00ff41; border: 2px solid rgba(0,255,65,.3);
}
.cookie-decline:hover {
  border-color: #00ff41; box-shadow: 0 0 10px rgba(0,255,65,.3);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .spotlight-main { grid-template-columns: 1fr 300px; }
  .neon-grid { grid-template-columns: repeat(2, 1fr); }
  .retro-grid { grid-template-columns: repeat(3, 1fr); }
  /* Detail */
  .detail-hero-grid { grid-template-columns: 300px 1fr; gap: 2rem; }
  .detail-content-grid { grid-template-columns: 1fr 260px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0; background: rgba(15,15,26,.98);
    flex-direction: column; padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform var(--transition); z-index: 99;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); pointer-events: auto; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Tags Hero */
  .hero-section { padding: 3rem 0; }
  .hero-title { font-size: 1.6rem; letter-spacing: 2px; }
  .hero-stats { gap: 1rem; }
  .stat-number { font-size: 1.2rem; }
  .stat-item { padding: .8rem 1rem; }
  /* Spotlight */
  .spotlight-main { grid-template-columns: 1fr; padding: 1rem 0.8rem; overflow: hidden; max-width: 100%; box-sizing: border-box; }
  .spotlight-hero { min-height: 240px; width: 100%; box-sizing: border-box; }
  .spotlight-hero-content { padding: 1.5rem; max-width: 100%; box-sizing: border-box; }
  .spotlight-hero-content h2 { font-size: 1.5rem; }
  .spotlight-hero-content p { font-size: .85rem; margin-bottom: 1rem; max-width: 100%; }
  .spotlight-hero-emoji { font-size: 5rem; }
  .spotlight-play-btn { padding: .6rem 1.5rem; font-size: .8rem; }
  .spotlight-badge { font-size: .6rem; padding: .25rem .8rem; margin-bottom: .6rem; }
  .spotlight-sidebar { gap: .4rem; width: 100%; box-sizing: border-box; }
  .spotlight-side-item { padding: .6rem .8rem; gap: .6rem; }
  .spotlight-side-icon { width: 36px; height: 36px; }
  .spotlight-side-text h3, .spotlight-side-text h4 { font-size: .8rem; }
  .spotlight-side-text span { font-size: .65rem; }
  .spotlight-side-rank { font-size: .7rem; min-width: 18px; }
  /* Neon */
  .neon-grid { grid-template-columns: 1fr 1fr; }
  .neon-title { font-size: 1.6rem; }
  /* Retro */
  .retro-grid { grid-template-columns: repeat(2, 1fr); }
  .retro-title { font-size: 1.4rem; }
  /* Detail */
  .detail-hero-grid { grid-template-columns: 1fr; }
  .detail-hero-image { max-width: 400px; }
  .detail-title { font-size: 1.8rem; }
  .detail-meta { gap: .6rem; padding: .7rem 1rem; }
  .game-developer,
  .game-publish-date,
  .game-update-time { font-size: .7rem; }
  .detail-content-grid { grid-template-columns: 1fr; }
  .detail-info-card { position: static; }
  .faq-title { font-size: 1rem; padding: .75rem 1rem; }
  .faq-question { font-size: .78rem; padding: .75rem 1rem .75rem 2rem; }
  .faq-question::before { left: .8rem; top: .75rem; }
  .faq-answer { font-size: .75rem; }
  .faq-item.open .faq-answer { padding: 0 1rem .85rem 2rem; }
}
@media (max-width: 480px) {
  .neon-grid { grid-template-columns: 1fr; }
  .retro-grid { grid-template-columns: 1fr 1fr; }
  .spotlight-main { overflow: hidden; max-width: 100%; padding: 0.8rem 0.6rem; box-sizing: border-box; }
  .spotlight-hero { min-height: 200px; width: 100%; box-sizing: border-box; }
  .spotlight-hero-content { padding: 1rem; max-width: 100%; box-sizing: border-box; }
  .spotlight-hero-content h2 { font-size: 1.2rem; }
  .spotlight-hero-content p { font-size: .78rem; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; max-width: 100%; }
  .spotlight-play-btn { padding: .5rem 1.2rem; font-size: .75rem; }
  .spotlight-sidebar { width: 100%; box-sizing: border-box; }
  .spotlight-side-item { padding: .5rem .6rem; gap: .5rem; }
  .spotlight-side-icon { width: 32px; height: 32px; }
  .spotlight-side-text h3, .spotlight-side-text h4 { font-size: .75rem; }
}

/* ===== Toast Notification ===== */
.toast-notification {
  position: fixed; top: 20px; right: 20px; z-index: 99999;
  min-width: 300px; max-width: 450px;
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  overflow: hidden; transition: opacity .3s ease, transform .3s ease;
  animation: toastSlideIn .3s ease-out;
}
.toast-notification.hide { opacity: 0; transform: translateX(100%); }
.toast-success { border-left: 4px solid #27ae60; }
.toast-error { border-left: 4px solid #e74c3c; }
@keyframes toastSlideIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}
.toast-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 1rem;
  font-size: .85rem; font-weight: 700; color: #fff;
}
.toast-success .toast-header { color: #27ae60; }
.toast-error .toast-header { color: #e74c3c; }
.toast-header .close-btn {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.2rem; cursor: pointer; padding: 0; line-height: 1;
  transition: color var(--transition);
}
.toast-header .close-btn:hover { color: #fff; }
.toast-body {
  padding: 0 1rem .8rem; font-size: .85rem; color: var(--text-light);
}

/* 两行文本溢出省略 */
.line-2-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}