/* ============================================================
   GTA 6 Universe — Main Stylesheet
   Author: GTA 6 Universe Team
   Version: 1.0
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --primary:        #00d4ff;
  --primary-dark:   #0099cc;
  --primary-glow:   rgba(0, 212, 255, 0.45);
  --secondary:      #9b59b6;
  --secondary-glow: rgba(155, 89, 182, 0.45);
  --accent:         #ff2952;
  --accent-glow:    rgba(255, 41, 82, 0.45);
  --bg:             #060610;
  --surface:        #0e0e1c;
  --surface2:       #14142a;
  --surface3:       #1c1c38;
  --text:           #dde0ff;
  --text-secondary: #8888aa;
  --text-muted:     #555577;
  --border:         rgba(255,255,255,0.08);
  --nav-h:          72px;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --transition:     all 0.35s cubic-bezier(.4,0,.2,1);
  --shadow-neon-b:  0 0 18px var(--primary-glow), 0 0 40px rgba(0,212,255,.15);
  --shadow-neon-p:  0 0 18px var(--secondary-glow),0 0 40px rgba(155,89,182,.15);
  --shadow-neon-r:  0 0 18px var(--accent-glow),  0 0 40px rgba(255,41,82,.15);
  --card-shadow:    0 8px 32px rgba(0,0,0,.6);
  --grad-primary:   linear-gradient(135deg, #00d4ff 0%, #9b59b6 100%);
  --grad-accent:    linear-gradient(135deg, #ff2952 0%, #9b59b6 100%);
  --grad-surface:   linear-gradient(145deg, var(--surface2), var(--surface3));
  --font-heading:   'Orbitron', sans-serif;
  --font-body:      'Poppins', sans-serif;
}

/* Light Mode */
body.light-mode {
  --bg:           #f0f0f8;
  --surface:      #ffffff;
  --surface2:     #e8e8f5;
  --surface3:     #d8d8ee;
  --text:         #18182e;
  --text-secondary:#444466;
  --text-muted:   #888899;
  --border:       rgba(0,0,0,.1);
  --card-shadow:  0 8px 32px rgba(0,0,50,.12);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.25; }
h1 { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem,2.5vw,1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--text-secondary); }

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none !important; }

.tag {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tag-news     { background: rgba(0,212,255,.15); color: var(--primary); border: 1px solid rgba(0,212,255,.3); }
.tag-gameplay { background: rgba(155,89,182,.15); color: var(--secondary); border: 1px solid rgba(155,89,182,.3); }
.tag-leaks    { background: rgba(255,41,82,.15); color: var(--accent); border: 1px solid rgba(255,41,82,.3); }
.tag-guides   { background: rgba(0,255,136,.15); color: #00ff88; border: 1px solid rgba(0,255,136,.3); }
.tag-games    { background: rgba(255,165,0,.15); color: #ffa500; border: 1px solid rgba(255,165,0,.3); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%);
  transition: transform .35s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-neon-b);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 30px var(--primary-glow), var(--shadow-neon-b); }
.btn-accent {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-neon-r);
}
.btn-accent:hover  { transform: translateY(-3px); box-shadow: 0 0 30px var(--accent-glow), var(--shadow-neon-r); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #000; box-shadow: var(--shadow-neon-b); }
.btn-sm { padding: .5rem 1.25rem; font-size: .75rem; }

/* ── Section Title ───────────────────────────────────────── */
.section-title { margin-bottom: 2.5rem; position: relative; }
.section-title .sub {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
}
.section-title h2 { position: relative; display: inline-block; }
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.section-title.text-center h2::after { left: 50%; transform: translateX(-50%); }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease;
}
.navbar.scrolled {
  background: rgba(6,6,16,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.5), 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}
.nav-logo span { color: var(--primary); }
.nav-logo .logo-icon { font-size: 1.5rem; filter: drop-shadow(var(--shadow-neon-b)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .9rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%; height: 2px;
  background: var(--grad-primary);
  transition: transform .3s ease;
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-search-box input {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .45rem 1rem .45rem 2.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .82rem;
  width: 200px;
  transition: var(--transition);
}
.nav-search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
  width: 240px;
}
.nav-search-box .search-icon {
  position: absolute;
  left: .8rem;
  color: var(--text-muted);
  font-size: .85rem;
  pointer-events: none;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.icon-btn:hover { color: var(--primary); border-color: var(--primary); box-shadow: var(--shadow-neon-b); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Search Results Dropdown ─────────────────────────────── */
.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  z-index: 999;
  display: none;
}
.search-results.show { display: block; }
.search-result-item {
  padding: .75rem 1rem;
  font-size: .85rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.search-result-item:hover { background: var(--surface2); color: var(--primary); }
.search-result-item:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(0,212,255,.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 80%,  rgba(155,89,182,.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 90%,  rgba(255,41,82,.1)   0%, transparent 60%),
    linear-gradient(180deg, #060610 0%, #0a0820 50%, #060610 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0%{background-position:0 0} 100%{background-position:60px 60px} }

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: .6;
}
@keyframes float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .6; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.3);
  padding: .4rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }

.hero h1 {
  animation: fadeInDown .8s .15s ease both;
  text-shadow: 0 0 60px rgba(0,212,255,.3);
  margin-bottom: 1.25rem;
}
.hero h1 .neon-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px var(--primary-glow));
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2rem;
  animation: fadeInUp .8s .3s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp .8s .45s ease both;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeInUp .8s .6s ease both;
  flex-wrap: wrap;
}
.stat-item {}
.stat-item .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .lbl { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  pointer-events: none;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(-20px)} }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════════════════════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { color: var(--text-muted); }
.breadcrumbs .current { color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow), 0 0 30px rgba(0,212,255,.1); }
.blog-card:hover::before { opacity: 1; }

.card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card:hover .card-img img { transform: scale(1.08); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,16,.8) 0%, transparent 60%);
}
.card-tag { position: absolute; top: 1rem; left: 1rem; }

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.card-meta i { color: var(--primary); }
.card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover .card-title { color: var(--primary); }
.card-excerpt {
  font-size: .87rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-author {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-secondary);
}
.card-author-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

/* Featured Card (large) */
.blog-card.featured {
  grid-column: span 2;
}
.blog-card.featured .card-img { height: 320px; }
.blog-card.featured .card-title { font-size: 1.3rem; -webkit-line-clamp: 2; }
@media(max-width:768px){ .blog-card.featured { grid-column: span 1; } .blog-card.featured .card-img { height: 220px; } }

/* ═══════════════════════════════════════════════════════════
   CATEGORIES BAR
═══════════════════════════════════════════════════════════ */
.categories-bar {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cat-btn {
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition);
}
.cat-btn:hover,
.cat-btn.active {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: var(--shadow-neon-b);
}

/* ═══════════════════════════════════════════════════════════
   TRENDING SLIDER
═══════════════════════════════════════════════════════════ */
.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s ease;
}
.slider-item {
  flex: 0 0 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.slider-item:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); }
.slider-img {
  height: 180px;
  overflow: hidden;
}
.slider-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.slider-item:hover .slider-img img { transform: scale(1.07); }
.slider-body { padding: 1.25rem; }
.slider-rank {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--border);
  margin-bottom: .5rem;
  line-height: 1;
}
.slider-title {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.slider-meta { font-size: .78rem; color: var(--text-muted); }
.slider-controls {
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--primary); color: #000; border-color: var(--primary); box-shadow: var(--shadow-neon-b); }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,.1) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-section h2 { margin-bottom: .75rem; }
.newsletter-section p { max-width: 500px; margin: 0 auto 2rem; }
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .85rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  transition: var(--transition);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,212,255,.12);
}
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   FAQ / ACCORDION
═══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0,212,255,.08);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}
.faq-question i {
  font-size: .85rem;
  color: var(--primary);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ═══════════════════════════════════════════════════════════
   GAMES CARDS
═══════════════════════════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.75rem;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow), 0 0 30px rgba(155,89,182,.15); }
.game-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.game-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.game-card:hover .game-card-img img { transform: scale(1.1); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,16,.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-body { padding: 1.25rem; }
.game-card-title {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.game-card-desc { font-size: .84rem; color: var(--text-secondary); line-height: 1.5; }
.game-card-rating { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: #ffa500; margin-top: .75rem; }

/* ═══════════════════════════════════════════════════════════
   SINGLE BLOG POST
═══════════════════════════════════════════════════════════ */
.blog-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
}
.blog-hero-bg img { width:100%; height:100%; object-fit:cover; }
.blog-hero-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(to top, var(--bg) 10%, rgba(6,6,16,.5) 60%, transparent 100%);
}
.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 3rem;
  width: 100%;
}
.blog-hero-content h1 {
  font-size: clamp(1.6rem,4vw,2.8rem);
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
  margin-bottom: .75rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media(max-width:1024px){ .blog-layout { grid-template-columns: 1fr; } }

.blog-content h2 { margin: 2rem 0 1rem; color: var(--text); }
.blog-content h3 { margin: 1.5rem 0 .75rem; color: var(--primary); }
.blog-content p  { margin-bottom: 1.2rem; }
.blog-content ul,
.blog-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.blog-content li { margin-bottom: .5rem; color: var(--text-secondary); }
.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background: var(--surface2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-secondary);
}
.blog-content a { color: var(--primary); border-bottom: 1px solid transparent; }
.blog-content a:hover { border-bottom-color: var(--primary); }
.blog-content strong { color: var(--text); }
.blog-content .highlight-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.blog-meta-bar span { font-size: .84rem; color: var(--text-secondary); display:flex; align-items:center; gap:.4rem; }
.blog-meta-bar i { color: var(--primary); }

.share-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 2rem;
  flex-wrap: wrap;
}
.share-label { font-family: var(--font-heading); font-size: .82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-secondary);
  transition: var(--transition);
}
.share-btn.twitter:hover  { background: #1da1f2; color: #fff; border-color: #1da1f2; }
.share-btn.facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-btn.reddit:hover   { background: #ff4500; color: #fff; border-color: #ff4500; }
.share-btn.copy:hover     { background: var(--primary); color: #000; border-color: var(--primary); }

/* Sidebar */
.sidebar {}
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.sidebar-widget h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.sidebar-widget h4 i { color: var(--primary); }

.related-post {
  display: flex;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.related-post:hover .related-title { color: var(--primary); }
.related-thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.related-thumb img { width:100%; height:100%; object-fit:cover; }
.related-title { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.related-meta  { font-size: .75rem; color: var(--text-muted); margin-top: .25rem; }

/* Table of Contents */
.toc { }
.toc-list { font-size: .84rem; }
.toc-list li { margin-bottom: .5rem; }
.toc-list a { color: var(--text-secondary); display:flex; align-items:center; gap:.5rem; }
.toc-list a:hover { color: var(--primary); }
.toc-list a::before { content:'#'; color: var(--primary); font-weight:700; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
@media(max-width:768px){ .contact-layout { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: .9rem; margin-bottom: .2rem; color: var(--text); }
.contact-info-text p  { font-size: .84rem; color: var(--text-secondary); margin: 0; }

.social-links { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link:hover { transform: translateY(-3px); }
.social-link.tw:hover  { background:#1da1f2; color:#fff; border-color:#1da1f2; box-shadow:0 0 15px rgba(29,161,242,.4); }
.social-link.fb:hover  { background:#1877f2; color:#fff; border-color:#1877f2; box-shadow:0 0 15px rgba(24,119,242,.4); }
.social-link.yt:hover  { background:#ff0000; color:#fff; border-color:#ff0000; box-shadow:0 0 15px rgba(255,0,0,.4); }
.social-link.ig:hover  { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; border-color:transparent; }
.social-link.dc:hover  { background:#7289da; color:#fff; border-color:#7289da; box-shadow:0 0 15px rgba(114,137,218,.4); }
.social-link.rd:hover  { background:#ff4500; color:#fff; border-color:#ff4500; box-shadow:0 0 15px rgba(255,69,0,.4); }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,.1) 0%, transparent 70%),
    var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p  { font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   SITEMAP
═══════════════════════════════════════════════════════════ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 2rem;
}
.sitemap-group h3 {
  font-size: .9rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.sitemap-group ul li { margin-bottom: .6rem; }
.sitemap-group ul li a {
  font-size: .88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.sitemap-group ul li a:hover { color: var(--primary); }
.sitemap-group ul li a::before { content:'→'; color: var(--text-muted); font-size: .8rem; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 6rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding: 4rem 0;
}
@media(max-width:900px){ .footer-main { grid-template-columns: 1fr; gap: 2.5rem; } }

.footer-brand {}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: .75rem;
}
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: .88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media(max-width:768px){ .footer-links-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .footer-links-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .86rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--primary); }
.footer-bottom-links { display:flex; gap: 1.25rem; }
.footer-bottom-links a { font-size:.82rem; color:var(--text-muted); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #000;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-neon-b);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { transform: translateY(-4px); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS (Scroll Reveal)
═══════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── Toast Notification ──────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  font-size: .88rem;
  color: var(--text);
  box-shadow: var(--card-shadow);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform .4s ease;
}
.toast.show { transform: translateX(0); }

/* ── Neon Divider ────────────────────────────────────────── */
.neon-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 3rem 0;
  opacity: .4;
}

/* ── Stat Bar ────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 3rem 0;
}
@media(max-width:600px){ .stats-bar { grid-template-columns: repeat(2,1fr); } }
.stat-cell {
  background: var(--surface);
  padding: 2rem;
  text-align: center;
}
.stat-cell .n { font-family:var(--font-heading); font-size:2rem; font-weight:900; background:var(--grad-primary); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.stat-cell .l { font-size:.8rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.1em; margin-top:.25rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:1024px) {
  .nav-search-box { display: none; }
  .hero-visual { display: none; }
}
@media(max-width:768px) {
  .nav-links { display: none; position:fixed; top:var(--nav-h); left:0; right:0; bottom:0; background:rgba(6,6,16,.97); backdrop-filter:blur(20px); flex-direction:column; align-items:center; justify-content:center; gap:1.5rem; z-index:999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .hero-actions .btn { padding: .65rem 1.5rem; }
  .footer-main { grid-template-columns: 1fr; }
  .section-pad { padding: 50px 0; }
  .newsletter-section { padding: 2.5rem 1.5rem; }
}
@media(max-width:480px) {
  .posts-grid { grid-template-columns: 1fr; }
  .games-grid  { grid-template-columns: 1fr; }
  .slider-item { flex: 0 0 260px; }
  .scroll-top  { bottom: 1rem; right: 1rem; }
}

/* ── Page Transition ─────────────────────────────────────── */
body { animation: fadeIn .4s ease; }

/* ── Custom Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── About Page ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 1.75rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow); border-color: var(--primary); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--shadow-neon-b);
}
.team-name { font-family:var(--font-heading); font-size:.95rem; font-weight:700; color:var(--text); margin-bottom:.3rem; }
.team-role { font-size:.82rem; color:var(--primary); margin-bottom:.75rem; }
.team-bio  { font-size:.82rem; color:var(--text-secondary); line-height:1.5; margin:0; }

/* ── Privacy / Disclaimer / Static Pages ────────────────── */
.static-content {
  max-width: 820px;
  margin: 0 auto;
}
.static-content h2 { color: var(--text); margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.static-content h3 { color: var(--primary); margin: 1.5rem 0 .75rem; font-size: 1.1rem; }
.static-content p  { color: var(--text-secondary); margin-bottom: 1.25rem; }
.static-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.static-content ul li { color:var(--text-secondary); margin-bottom:.5rem; }
.static-content .last-updated {
  font-size:.82rem;
  color:var(--text-muted);
  margin-bottom:2rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--border);
}

/* ── Highlight Colors ────────────────────────────────────── */
::selection { background: rgba(0,212,255,.3); color: #fff; }
