/* ========= GAMES SECTION STYLES ========= */
.games-section {
  margin-bottom: 48px;
  position: relative;
}

.games-section::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  margin: 10px 0 14px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  margin: 0;
  font: 800 18px/1.2 Inter;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #f3f7ff;
}

.see-all {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--sub);
  text-decoration: none;
  font: 700 12px/1 Inter;
  letter-spacing: .4px;
  transition: color .15s ease;
}

.see-all:hover {
  color: #fff;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

/* Game Card */
.game-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
  transition: transform .18s ease, filter .18s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  filter: saturate(1.05);
}

.game-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.game-num {
  position: absolute;
  left: 8px;
  bottom: 8px;
  color: #fff;
  font: 900 12px/1 Inter;
  text-shadow: 0 2px 6px rgba(0,0,0,.65);
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2a3446, #131b28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 6px 10px rgba(0,0,0,.45);
  outline: 1px solid rgba(255,255,255,.12);
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #0d1116;
  font: 800 11px/1 Inter;
  letter-spacing: .4px;
  background: linear-gradient(180deg, #b5e1ff, #7bc6ff);
  box-shadow: 0 10px 18px rgba(123,198,255,.35);
}

/* Game Overlay */
.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(10,14,20,.0), rgba(10,14,20,.55));
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

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

.overlay-content {
  display: flex;
  gap: 10px;
}

.play-btn, .demo-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font: 800 12px/1 Inter;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #0d1116;
  text-decoration: none;
  transition: transform .15s ease;
}

.play-btn {
  background: linear-gradient(180deg, #ffd783, #e6b94a);
}

.demo-btn {
  background: linear-gradient(180deg, #b5e1ff, #7bc6ff);
}

.play-btn:hover, .demo-btn:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  margin: 14px 0 18px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ring);
  background: linear-gradient(180deg, #182131, #121822);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 14px;
}

.hero-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
}

.hero-info {
  padding: 22px 22px 22px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.hero-section h1 {
  margin: 0;
  font: 800 26px/1.15 Inter;
  color: var(--txt);
}

.hero-meta {
  color: var(--muted);
  font: 600 14px/1.4 Inter;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  font: 800 13px/1 Inter;
  color: #0d1116;
  background: linear-gradient(180deg, #ffd783, #e6b94a);
  box-shadow: 0 10px 20px rgba(230,185,74,.35);
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
  width: fit-content;
}

.hero-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.hero-spark {
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(123,198,255,.18), rgba(230,196,106,.18), rgba(123,198,255,.18));
  filter: blur(44px);
  pointer-events: none;
  animation: spin 14s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

/* Sports Section */
.sports-section .games-grid,
.sports-grid {
  grid-template-columns: repeat(7, 1fr);
}

.sport-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
  transition: transform .18s ease, filter .18s ease;
  cursor: pointer;
}

.sport-card:hover {
  transform: translateY(-4px);
  filter: saturate(1.05);
}

.sport-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.sport-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: auto;
  width: 88%;
  text-align: center;
  background: linear-gradient(180deg, #2a3446, #1b2333);
  border: 1px solid var(--ring);
  color: #f4f7ff;
  border-radius: 10px;
  padding: 8px 10px;
  font: 800 12px/1 Inter;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Special Banner */
.special-banner {
  position: relative;
  background: linear-gradient(135deg, var(--panel) 0%, rgba(212,165,116,.05) 100%);
  border: 1px solid rgba(212,165,116,.15);
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
  overflow: hidden;
}

.special-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,170,.08) 0%, transparent 70%);
  pointer-events: none;
}

.special-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,165,116,.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.special-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.special-text {
  color: var(--txt-2);
  font-size: 14px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* SEO Content */
.seo-content {
  padding: 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.seo-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: none;
}

.seo-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--txt);
  margin: 48px 0 24px;
  line-height: 1.3;
  text-transform: none;
}

.seo-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 32px 0 16px;
  line-height: 1.4;
  text-transform: none;
}

.seo-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--txt-2);
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 400;
}

.seo-content div[class$="-section"] {
  margin-bottom: 64px;
}