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

:root {
  --bg: #090a17;
  --bg-2: #0e0f24;
  --bg-3: #151630;
  --bg-card: #1a1b36;
  --bg-card-h: #1f2040;
  --purple: #7c3aed;
  --purple-l: #9f67f7;
  --purple-d: #5b21b6;
  --gold: #f59e0b;
  --gold-l: #fbbf24;
  --text: #f1f5f9;
  --text-2: #cbd5e1;
  --text-3: #94a3b8;
  --border: rgba(124, 58, 237, 0.22);
  --border-s: rgba(255, 255, 255, 0.07);
  --grad-p: linear-gradient(135deg, #7c3aed, #9f67f7);
  --grad-g: linear-gradient(135deg, #f59e0b, #fbbf24);
  --r1: 8px;
  --r2: 14px;
  --r3: 22px;
  --r4: 32px;
  --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: var(--tr); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 1rem; }

p { color: var(--text-2); }
p + p { margin-top: 0.875rem; }
strong { font-weight: 600; color: var(--text); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 0.75rem; }

.section-sub {
  color: var(--text-3);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--tr);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-p);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
  color: #fff;
}

.btn-accent {
  background: var(--grad-g);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--purple-l);
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple-l);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tag-purple { background: rgba(124, 58, 237, 0.15); color: var(--purple-l); border: 1px solid rgba(124, 58, 237, 0.3); }
.tag-gold { background: rgba(245, 158, 11, 0.12); color: var(--gold-l); border: 1px solid rgba(245, 158, 11, 0.3); }
.tag-green { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }

.divider {
  height: 1px;
  background: var(--border-s);
  margin: 2.5rem 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(9, 10, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-s);
  transition: var(--tr);
}

.navbar.scrolled {
  background: rgba(9, 10, 23, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: var(--r1);
  object-fit: contain;
}

.nav-brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--grad-p);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-3);
  transition: var(--tr);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.12);
}

.nav-link.active {
  color: var(--purple-l);
  background: rgba(124, 58, 237, 0.12);
}

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--r1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-s);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 10, 23, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border-s);
}

.mobile-menu.open { display: flex; }

.mobile-nav-link {
  padding: 1rem 1.5rem;
  border-radius: var(--r2);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border-s);
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--purple-l);
  border-color: var(--border);
  background: rgba(124, 58, 237, 0.08);
}

.mobile-nav-link i { color: var(--purple-l); width: 20px; text-align: center; }

.mobile-nav-cta {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 10, 23, 0.96) 0%, rgba(26, 10, 53, 0.8) 50%, rgba(9, 10, 23, 0.96) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(124, 58, 237, 0.14);
  top: -120px;
  right: -80px;
}

.hero-orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(245, 158, 11, 0.07);
  bottom: -60px;
  left: -80px;
  animation-delay: -4s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -25px) scale(1.06); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.32);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-l);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero-badge i { font-size: 0.72rem; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  background: var(--grad-p);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight-g {
  background: var(--grad-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-s);
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad-p);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 0.2rem;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--r3);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(124, 58, 237, 0.12);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: rgba(26, 27, 54, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 0.875rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.hero-float-card-1 {
  bottom: 12%;
  left: -6%;
  animation: float-y 4s ease-in-out infinite;
}

.hero-float-card-2 {
  top: 10%;
  right: -6%;
  animation: float-y 4s ease-in-out infinite 0.6s;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hfc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r1);
  background: var(--grad-p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.hfc-icon.gold { background: var(--grad-g); }
.hfc-label { font-size: 0.68rem; color: var(--text-3); }
.hfc-value { font-size: 0.88rem; font-weight: 600; color: var(--text); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r3);
  padding: 2rem;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-p);
  opacity: 0;
  transition: var(--tr);
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r2);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--purple-l);
  margin-bottom: 1.25rem;
  transition: var(--tr);
}

.feature-card:hover .feature-icon {
  background: var(--grad-p);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.feature-title { font-size: 1.1rem; margin-bottom: 0.6rem; }
.feature-desc { font-size: 0.9rem; color: var(--text-3); line-height: 1.65; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r3);
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(124, 58, 237, 0.08);
}

.game-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-img { transform: scale(1.05); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 27, 54, 0.92) 0%, transparent 60%);
  opacity: 0;
  transition: var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.game-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-card-category {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.game-card-title { font-size: 1rem; margin-bottom: 0.5rem; }
.game-card-desc { font-size: 0.875rem; color: var(--text-3); line-height: 1.6; flex: 1; }

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-s);
}

.game-card-players {
  font-size: 0.78rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.game-card-players i { color: var(--purple-l); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--tr);
}

.blog-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img { transform: scale(1.05); }

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.blog-card-cat {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--purple-l);
  background: rgba(124, 58, 237, 0.12);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card-date i { font-size: 0.68rem; }

.blog-card-title {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.65rem;
  transition: var(--tr);
}

.blog-card:hover .blog-card-title { color: var(--purple-l); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.65;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-s);
}

.blog-card-read {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-l);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--tr);
}

.blog-card-read:hover { gap: 0.6rem; color: var(--gold-l); }
.blog-card-read i { font-size: 0.72rem; }

.blog-card-time {
  font-size: 0.78rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.stats-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  padding: 4.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-p);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label { font-size: 0.85rem; color: var(--text-3); letter-spacing: 0.02em; }

.cta-wrap {
  padding: 5rem 0;
}

.cta-section {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14) 0%, rgba(26, 10, 53, 0.4) 50%, rgba(245, 158, 11, 0.09) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r4);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: rgba(124, 58, 237, 0.07);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cta-title { margin-bottom: 1rem; }
.cta-sub { color: var(--text-3); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-s);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo { width: 38px; height: 38px; border-radius: var(--r1); }

.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--grad-p);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.9rem;
  transition: var(--tr);
}

.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-link {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover {
  color: var(--purple-l);
  padding-left: 0.3rem;
}

.footer-link i { font-size: 0.68rem; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-text { font-size: 0.82rem; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: 0.82rem; color: var(--text-3); transition: var(--tr); }
.footer-bottom-link:hover { color: var(--purple-l); }

.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-s);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: rgba(124, 58, 237, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 0.875rem;
}

.page-hero-title { margin-bottom: 0.75rem; }

.page-hero-sub {
  color: var(--text-3);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-3);
  margin-top: 1.5rem;
}

.breadcrumb a { color: var(--text-3); transition: var(--tr); }
.breadcrumb a:hover { color: var(--purple-l); }
.breadcrumb i { font-size: 0.62rem; }
.breadcrumb span { color: var(--purple-l); font-weight: 500; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.article-cover {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--r3);
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-s);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-s);
}

.article-meta-item {
  font-size: 0.83rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.article-meta-item i { color: var(--purple-l); }

.article-content h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.article-content h3 { font-size: 1.25rem; margin: 2rem 0 0.875rem; color: var(--purple-l); }
.article-content h4 { font-size: 1.05rem; margin: 1.5rem 0 0.75rem; }
.article-content p { font-size: 1.01rem; line-height: 1.85; color: var(--text-2); }
.article-content ul { list-style: disc; padding-left: 1.5rem; margin: 0.875rem 0 1rem; }
.article-content ul li { font-size: 1.01rem; color: var(--text-2); margin-bottom: 0.5rem; line-height: 1.7; }
.article-content ol { list-style: decimal; padding-left: 1.5rem; margin: 0.875rem 0 1rem; }
.article-content ol li { font-size: 1.01rem; color: var(--text-2); margin-bottom: 0.5rem; line-height: 1.7; }
.article-content strong { color: var(--text); font-weight: 600; }
.article-content a { color: var(--purple-l); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--gold-l); }

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--purple);
  background: rgba(124, 58, 237, 0.07);
  border-radius: 0 var(--r2) var(--r2) 0;
}

.article-content blockquote p { color: var(--text-2); font-style: italic; font-size: 1.05rem; }

.article-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-s);
}

.article-tag-label { font-size: 0.83rem; color: var(--text-3); font-weight: 600; }

.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r3);
  padding: 1.5rem;
}

.sidebar-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-s);
}

.sidebar-post {
  display: flex;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-s);
  transition: var(--tr);
  cursor: pointer;
}

.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-post-img {
  width: 64px;
  height: 48px;
  border-radius: var(--r1);
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-post-title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-2);
  transition: var(--tr);
}

.sidebar-post:hover .sidebar-post-title { color: var(--purple-l); }
.sidebar-post-date { font-size: 0.74rem; color: var(--text-3); margin-top: 0.25rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r2);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: var(--tr);
  font-family: 'Poppins', sans-serif;
  gap: 1rem;
}

.faq-question:hover { color: var(--purple-l); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
  color: var(--purple-l);
  font-size: 0.78rem;
}

.faq-item.open .faq-icon {
  background: var(--purple);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.78;
}

.glossary-nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.glossary-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r1);
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  color: var(--text-3);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
}

.glossary-nav-btn:hover,
.glossary-nav-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.glossary-group { margin-bottom: 2.5rem; }

.glossary-letter {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-p);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-s);
  font-family: 'Poppins', sans-serif;
}

.glossary-items { display: flex; flex-direction: column; gap: 0.75rem; }

.glossary-item {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r2);
  padding: 1.25rem 1.5rem;
  transition: var(--tr);
}

.glossary-item:hover { border-color: var(--border); }

.glossary-term { font-size: 1rem; font-weight: 700; color: var(--purple-l); margin-bottom: 0.4rem; }
.glossary-def { font-size: 0.92rem; color: var(--text-2); line-height: 1.68; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r2);
  transition: var(--tr);
}

.contact-info-item:hover { border-color: var(--border); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r1);
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-l);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.76rem;
  color: var(--text-3);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.contact-info-value { font-size: 0.95rem; color: var(--text); font-weight: 500; }

.contact-map {
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--border-s);
  aspect-ratio: 4/3;
}

.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r3);
  padding: 2.5rem;
}

.contact-form-title { margin-bottom: 0.5rem; }
.contact-form-sub { color: var(--text-3); font-size: 0.9rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: var(--bg-3);
  border: 1px solid var(--border-s);
  border-radius: var(--r1);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--tr);
  outline: none;
}

.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-control::placeholder { color: var(--text-3); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--r2);
  border: 1px solid var(--border-s);
}

.comparison-table { width: 100%; border-collapse: collapse; background: var(--bg-card); }

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-s);
  font-size: 0.9rem;
}

.comparison-table th {
  background: rgba(124, 58, 237, 0.08);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.comparison-table td:first-child { font-weight: 600; color: var(--text); }

.check-yes { color: #34d399; }
.check-no { color: #f87171; }
.check-partial { color: var(--gold); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-img {
  border-radius: var(--r3);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border-s);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.about-title { margin-bottom: 1rem; }
.about-text { color: var(--text-2); line-height: 1.82; font-size: 0.97rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r2);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--tr);
}

.value-card:hover { border-color: var(--border); transform: translateY(-3px); }

.value-icon {
  font-size: 2rem;
  background: var(--grad-p);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.875rem;
  display: block;
}

.value-title { font-size: 0.97rem; margin-bottom: 0.5rem; }
.value-desc { font-size: 0.85rem; color: var(--text-3); line-height: 1.62; }

.games-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--border-s);
  background: var(--bg-card);
  color: var(--text-3);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: 1.15rem; margin: 1.75rem 0 0.75rem; color: var(--purple-l); }
.legal-content p { font-size: 0.97rem; color: var(--text-2); line-height: 1.82; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin: 0.875rem 0; }
.legal-content ul li { font-size: 0.97rem; color: var(--text-2); margin-bottom: 0.4rem; line-height: 1.72; }
.legal-content a { color: var(--purple-l); text-decoration: underline; text-underline-offset: 3px; }

.legal-update {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r1);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 2.5rem;
}

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: var(--nav-h);
}

.page-404-inner { max-width: 540px; }

.page-404-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(6rem, 20vw, 11rem);
  font-weight: 900;
  background: var(--grad-p);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 60px rgba(124, 58, 237, 0.3));
}

.page-404-title { margin-bottom: 0.875rem; }
.page-404-sub { color: var(--text-3); margin: 0 auto 2.5rem; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.text-center { text-align: center; }
.text-purple { color: var(--purple-l) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-3) !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 1rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.w-100 { width: 100%; }
.fw-600 { font-weight: 600; }

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }

  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 2.5rem 0; }

  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 3.5rem 1.5rem; border-radius: var(--r2); }

  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .hero .container { padding-top: 4rem; padding-bottom: 3rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .page-hero { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }

  .contact-form-wrap { padding: 1.5rem; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  .breadcrumb { flex-wrap: wrap; }
}
