/* ============================================================
   THE BETSTORE — styles.css
   Design System: Dark premium sports-app theme
   ============================================================ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --bg:        #060606;
  --card:      #1a1a1d;
  --elevated:  #242428;
  --orange:    #f97316;
  --orange-dk: #c2410c;
  --teal:      #00d4aa;
  --red:       #e53935;
  --green:     #25d366;
  --text:      #e8e8e8;
  --muted:     #a0a0a8;
  --border:    rgba(255,255,255,0.07);
  --shadow:    0 8px 32px rgba(0,0,0,0.6);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
ul { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ─── ANIMATIONS ─── */
@keyframes ticker     { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes pulse      { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
@keyframes fadeIn     { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin       { to{transform:rotate(360deg)} }
@keyframes shimmer    { 0%{background-position:-400px 0} 100%{background-position:400px 0} }

/* ─── UTILITY ─── */
.hidden  { display: none !important; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ================================================================
   TICKER BAR
   ================================================================ */
.ticker-bar {
  background: var(--orange);
  color: #000;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 50;
}
.ticker-track {
  display: inline-block;
  animation: ticker 35s linear infinite;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.3px;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 6px; margin: 0 30px; }
.ticker-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
}

/* ================================================================
   STICKY HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,6,6,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo — full rectangular image (1536x517 ratio) */
.logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo-img {
  height: 88px;        /* 200% of original 44px */
  width: auto;
  max-width: 440px;    /* 200% of original 220px */
  object-fit: contain;
  display: block;
}
/* Fallback text logo shown only if image fails to load */
.logo-fallback {
  display: none;
  align-items: center;
  gap: 8px;
}
.logo-fallback-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px; color: #fff;
}
.logo-fallback-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 32px;
  letter-spacing: 1px; line-height: 1;
}
.logo-fallback-text .accent { color: var(--orange); }
/* Keep old classes working (footer etc) */
.logo-mark { display: none; }
.logo-wordmark { display: none; }

/* Nav */
.main-nav { display: flex; gap: 4px; margin: 0 auto; }
.main-nav a {
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--text); background: var(--elevated); }

/* CTA */
.header-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,115,22,0.45);
}

/* Login / Sign Up button */
.btn-login-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.4px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-login-nav:hover,
.btn-login-nav.active {
  background: rgba(255,255,255,0.08);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}
/* Hide login btn on very small screens — mobile nav covers it */
@media (max-width: 480px) {
  .btn-login-nav { display: none; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 100px 0 0 0;
  background: rgba(6,6,6,0.98);
  z-index: 190;
  padding: 24px;
  backdrop-filter: blur(16px);
  animation: fadeIn 0.2s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  letter-spacing: 1px;
}
.mobile-menu a:last-child { border: none; }
.mobile-menu .menu-cta {
  display: block;
  background: var(--orange);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 20px;
  font-size: 20px;
}

/* ================================================================
   HERO SLIDESHOW
   ================================================================ */
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.18,1);
}
.hero-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}
.hero-slide.active .slide-bg { transform: scale(1.04); }

/* Fallback gradient backgrounds per slide */
.slide-bg-1 { background: linear-gradient(135deg,#0a1628 0%,#1a3a6b 45%,#b91c1c 100%); }
.slide-bg-2 { background: linear-gradient(135deg,#0d0221 0%,#1e0550 45%,#c2410c 100%); }
.slide-bg-3 { background: linear-gradient(135deg,#000d1a 0%,#003366 45%,#00d4aa 100%); }
.slide-bg-4 { background: linear-gradient(135deg,#001f0d 0%,#005c38 45%,#1d4ed8 100%); }
.slide-bg-5 { background: linear-gradient(135deg,#1a1000 0%,#4d3000 45%,#d97706 100%); }
.slide-bg-6 { background: linear-gradient(135deg,#0a0a0a 0%,#1a0a2e 45%,#7c3aed 100%); }

.slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 60px,rgba(255,255,255,0.018) 60px,rgba(255,255,255,0.018) 120px);
}
.slide-overlay {
  position: absolute; inset: 0;
  /* Left side darker for text readability, right side nearly clear so image shines through */
  background: linear-gradient(90deg,rgba(6,6,6,0.78) 0%,rgba(6,6,6,0.35) 45%,rgba(6,6,6,0.05) 100%);
}
.slide-deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  opacity: 0.09;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.slide-content {
  position: absolute;
  left: 6%; top: 50%;
  transform: translateY(-50%);
  max-width: 560px;
  animation: fadeIn 0.6s ease;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.slide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px,6vw,68px);
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.slide-title .accent { color: var(--orange); }
.slide-sub {
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slide arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  color: #fff; font-size: 22px;
  transition: all 0.2s;
  user-select: none;
}
.slide-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slide-arrow.prev { left: 18px; }
.slide-arrow.next { right: 18px; }

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.28);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.35s;
}
.dot.active { background: var(--orange); width: 26px; border-radius: 4px; }

/* ================================================================
   BUTTONS (reusable)
   ================================================================ */
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 17px;
  letter-spacing: 0.4px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.28);
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-green {
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 15px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.btn-green:hover { background: #1db954; transform: translateY(-1px); }
.btn-ghost {
  background: var(--elevated);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.btn-ghost:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ================================================================
   CATEGORY STRIP
   ================================================================ */
.category-strip {
  border-bottom: 1px solid var(--border);
  background: rgba(6,6,6,0.8);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-inner {
  display: flex; gap: 8px;
  padding: 12px 24px;
  width: max-content;
}
.cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
}
.cat-pill:hover { background: var(--elevated); color: var(--text); }
.cat-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.live-indicator {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.2s ease infinite;
}

/* ================================================================
   SECTION LAYOUT
   ================================================================ */
.section-wrap { padding: 52px 24px; }
.section-wrap.bg-card { background: var(--card); }
.section-wrap.tight { padding: 36px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title .accent { color: var(--orange); }
.see-all {
  color: var(--orange);
  font-size: 13px; font-weight: 600;
  transition: opacity 0.2s;
}
.see-all:hover { opacity: 0.75; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0 24px; }

/* ================================================================
   PLATFORM CARDS
   ================================================================ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.platform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.platform-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-gradient, linear-gradient(90deg, var(--orange), var(--orange-dk)));
}
.platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.platform-logo {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  overflow: hidden;
  letter-spacing: -1px;
}
.platform-logo img { width:100%; height:100%; object-fit:cover; border-radius:14px; }
.platform-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 20px;
  margin-bottom: 4px;
}
.platform-rating {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px;
}
.stars { color: #fbbf24; font-size: 13px; letter-spacing: 1px; }
.rating-num { color: var(--muted); font-size: 12px; font-weight: 600; }
.platform-desc {
  color: var(--muted);
  font-size: 13px; line-height: 1.55;
  margin-bottom: 18px;
  min-height: 40px;
}
.platform-btns { display: flex; gap: 8px; }
.platform-btns .btn-ghost { flex: 1; justify-content: center; font-size: 13px; padding: 9px 8px; }
.platform-btns .btn-green { flex: 1; justify-content: center; font-size: 13px; padding: 9px 8px; }

/* ================================================================
   CRICKET SCORES
   ================================================================ */
.scores-scroll {
  display: flex; gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.scores-scroll::-webkit-scrollbar { display: none; }
.score-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  min-width: 290px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.score-card:hover { border-color: rgba(249,115,22,0.25); }
.score-card-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.score-match-type {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}
.live-badge {
  background: var(--red);
  color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
.live-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1s infinite;
}
.done-badge {
  background: var(--elevated);
  color: var(--muted);
  font-size: 9px; font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.score-team {
  display: flex; align-items: center;
  gap: 10px;
  margin: 8px 0;
}
.score-team .flag { font-size: 20px; line-height: 1; }
.score-team .team-name { flex: 1; font-weight: 600; font-size: 14px; }
.score-team .team-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--teal);
  line-height: 1;
}
.score-team .team-overs { font-size: 11px; color: var(--muted); margin-left: 3px; }
.score-note {
  border-top: 1px solid var(--border);
  margin-top: 10px; padding-top: 8px;
  font-size: 11.5px; color: var(--muted);
  line-height: 1.4;
}
.score-loading {
  display: flex; align-items: center; gap: 12px;
  padding: 24px;
  color: var(--muted); font-size: 14px;
}
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ================================================================
   NEWS GRID
   ================================================================ */
.news-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-featured { grid-row: unset; }

/* Text-only news card */
.news-text-only {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-left: 3px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.news-text-only:hover {
  border-left-color: var(--orange);
  transform: translateX(4px);
  box-shadow: none;
}
.news-text-only.news-featured {
  border-left-color: var(--orange);
  background: linear-gradient(135deg, rgba(249,115,22,0.06), var(--card));
}
.news-text-only .news-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news-text-only.news-featured .news-title {
  font-size: 20px;
}
.news-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.news-read-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
}
.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249,115,22,0.25);
  box-shadow: var(--shadow);
}
.news-thumb {
  display: none; /* images removed — text-only layout */
}
.news-body { padding: 16px 18px; flex: 1; }
.news-tag {
  display: inline-block;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.news-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 17px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.news-featured .news-title { font-size: 24px; }
.news-meta { font-size: 12px; color: var(--muted); margin-top: auto; }

/* ================================================================
   GAMES GRID
   ================================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.game-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--card);
}
.game-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.game-img img { width:100%; height:100%; object-fit: cover; position: absolute; inset: 0; }
.game-tile:hover .game-img { transform: scale(1.08); }

/* Game placeholder gradients */
.game-tile:nth-child(1) .game-img { background: linear-gradient(150deg,#1a0030,#5b21b6 55%,#f97316); }
.game-tile:nth-child(2) .game-img { background: linear-gradient(150deg,#001a30,#1d4ed8 55%,#00d4aa); }
.game-tile:nth-child(3) .game-img { background: linear-gradient(150deg,#1a0000,#dc2626 55%,#f97316); }
.game-tile:nth-child(4) .game-img { background: linear-gradient(150deg,#0d1a00,#16a34a 55%,#fbbf24); }
.game-tile:nth-child(5) .game-img { background: linear-gradient(150deg,#0a0a1a,#1d4ed8 55%,#e53935); }

.game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,rgba(0,0,0,0.88) 35%,rgba(0,0,0,0.1) 70%,transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
}
.game-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(249,115,22,0.6);
}
.game-tile:hover .game-play-btn { transform: translate(-50%,-50%) scale(1); }
.game-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px;
  line-height: 1.1;
}
.game-sub {
  font-size: 11px; color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 3px;
}

/* ================================================================
   BLOG GRID
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.25);
  box-shadow: var(--shadow);
}
.blog-thumb {
  height: 180px;
  object-fit: cover;
  background: var(--elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  overflow: hidden;
}
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.blog-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 19px;
  line-height: 1.25; margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 13px; color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 12px; color: var(--muted);
  margin-top: auto;
}
.read-more { color: var(--orange); font-weight: 600; }

/* Full blog grid (blog.html) */
.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ================================================================
   ARTICLE PAGE
   ================================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.article-hero-img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  background: var(--elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
}
.article-meta-bar {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.article-tag {
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.article-date, .article-author { font-size: 13px; color: var(--muted); }
.article-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(30px,4vw,48px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.article-body { line-height: 1.8; color: rgba(232,232,232,0.88); }
.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 26px;
  margin: 32px 0 14px;
  color: var(--text);
}
.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 21px;
  margin: 24px 0 10px;
  color: var(--text);
}
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol {
  margin: 12px 0 18px 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--orange); font-weight: 700; }
.article-body a { color: var(--orange); border-bottom: 1px solid rgba(249,115,22,0.3); }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  margin: 20px 0;
  padding: 12px 20px;
  background: rgba(249,115,22,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--muted);
}

/* Sidebar */
.article-sidebar { }
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-widget h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
  color: var(--orange);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.sidebar-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.sidebar-link:last-child { border: none; }
.sidebar-link:hover { color: var(--orange); }
.sidebar-cta {
  background: linear-gradient(135deg, #7c2d12, #c2410c, #f97316);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-cta h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px;
  margin-bottom: 8px;
}
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 16px; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 45%, #ea580c 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 80px,rgba(255,255,255,0.025) 80px,rgba(255,255,255,0.025) 160px);
}
.cta-banner-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(30px,5vw,56px);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.cta-sub {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  margin-bottom: 32px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--orange-dk);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px;
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.btn-wa-large {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px;
  transition: all 0.2s;
}
.btn-wa-large:hover { background: #1db954; transform: translateY(-2px); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 56px 24px 100px;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-img { height: 60px; max-width: 300px; }
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.75; margin-bottom: 22px; max-width: 300px; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: all 0.2s;
  color: var(--muted); text-decoration: none;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--orange);
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: var(--muted); font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); line-height: 1.6; }
.age-badge {
  background: var(--elevated);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* ================================================================
   MOBILE BOTTOM NAV
   ================================================================ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,29,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 300;
  padding: 0 0 env(safe-area-inset-bottom,0);
  display: none;
}
.mobile-bottom-inner {
  display: flex;
  align-items: stretch;
  height: 60px;
}
.mobile-nav-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 10px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.mobile-nav-item:hover,
.mobile-nav-item.active { color: var(--orange); }
.mobile-nav-item .nav-icon { font-size: 20px; line-height: 1; }
.mobile-getid-btn {
  flex: 1.2;
  background: var(--orange);
  color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px !important;
  letter-spacing: 0.5px;
  border-radius: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-getid-btn:hover { background: var(--orange-dk); }
.mobile-getid-btn .nav-icon { font-size: 18px; }

/* ================================================================
   WHATSAPP POPUP
   ================================================================ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 400px; width: 92%;
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.popup-overlay.show .popup-box { transform: translateY(0) scale(1); }
.popup-close {
  position: absolute; top: 14px; right: 16px;
  background: var(--elevated); border: 1px solid var(--border);
  color: var(--muted); border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer;
  transition: all 0.2s;
}
.popup-close:hover { background: var(--red); border-color: var(--red); color: #fff; }
.popup-icon { font-size: 60px; margin-bottom: 16px; line-height: 1; }
.popup-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px;
  margin-bottom: 10px;
}
.popup-desc { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 26px; }
.popup-desc .highlight { color: var(--orange); font-weight: 700; }
.btn-whatsapp {
  background: var(--green);
  color: #fff; width: 100%;
  padding: 15px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 19px;
  margin-bottom: 10px;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-1px); }
.btn-cancel {
  background: var(--elevated);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 12px; width: 100%;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: all 0.2s;
}
.btn-cancel:hover { color: var(--text); border-color: var(--muted); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1d);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(249,115,22,0.08), transparent);
}
.page-hero-inner { position: relative; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(36px,6vw,64px);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 10px;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero p { color: var(--muted); font-size: 16px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .platforms-grid { grid-template-columns: repeat(3,1fr); }
  .games-grid { grid-template-columns: repeat(3,1fr); }
  .blog-grid-full { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  /* Scale logo down slightly on mobile so it fits the navbar */
  .logo-img { height: 64px; max-width: 280px; }
  .site-header { height: 80px; }
  .mobile-menu { inset: 80px 0 0 0 !important; }
  .platforms-grid { grid-template-columns: repeat(2,1fr); }
  .games-grid { grid-template-columns: repeat(3,1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured { grid-row: auto; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .mobile-bottom-nav { display: block; }
  .site-footer { padding-bottom: 80px; }
  .hero { height: 440px; }
  .slide-deco { display: none; }
}
@media (max-width: 580px) {
  .platforms-grid { grid-template-columns: repeat(2,1fr); }
  .games-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid, .blog-grid-full { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 380px; }
  .slide-content { left: 4%; right: 4%; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-white,
  .cta-btns .btn-wa-large { width: 100%; max-width: 320px; }
}