/* ============================================================
   GameOne.it.com - Global Stylesheet
   Target: Bangladesh | Language: Bengali (bn-BD)
   Design: Mixed Aggregation + Content Distribution + Heavy Footer
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #0a2540;
  --primary-light: #0d3460;
  --accent: #00c6ff;
  --accent-dark: #0099cc;
  --accent2: #ff6b35;
  --accent2-dark: #e05520;
  --bg-dark: #060f1e;
  --bg-mid: #0a1628;
  --bg-card: #0d2040;
  --bg-card2: #0f2850;
  --bg-light: #f0f6ff;
  --bg-section: #f7faff;
  --text-white: #ffffff;
  --text-light: #cce0f5;
  --text-muted: #7a9bbf;
  --text-dark: #0a1628;
  --text-body: #1a2a3a;
  --border-color: rgba(0,198,255,0.15);
  --border-card: rgba(0,198,255,0.2);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 20px rgba(0,198,255,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --transition: 0.25s ease;
  --header-h: 72px;
  --topbar-h: 36px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-stack);
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-weight: 700; color: var(--primary); }

/* ---- Container ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.topbar {
  background: var(--bg-dark);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,198,255,0.1);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
}
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-live-dot {
  width: 7px; height: 7px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
  display: inline-block;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.topbar-right a { color: var(--text-muted); }
.topbar-right a:hover { color: var(--accent); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--primary);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border-bottom: 2px solid rgba(0,198,255,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img,
.site-logo svg {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.main-nav a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(0,198,255,0.1);
}

/* Header CTA Buttons */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-register:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-login {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-login:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-white);
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
}
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.mobile-nav-panel {
  position: absolute;
  top: 0; left: 0;
  width: 280px;
  height: 100%;
  background: var(--primary);
  padding: 24px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-panel a {
  display: block;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-panel a:hover { color: var(--accent); background: rgba(0,198,255,0.08); }
.mobile-nav-cta { display: flex; gap: 10px; margin-top: 16px; }
.mobile-nav-cta .btn { flex: 1; justify-content: center; }
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 8px;
}
.mobile-nav-drawer.open { display: block; }

/* ============================================================
   BANNER SECTION
   ============================================================ */
.banner-section {
  width: 100%;
  overflow: hidden;
  background: var(--bg-dark);
  position: relative;
}
.banner-section img,
.banner-section svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* ============================================================
   SHORTCUT ICON CARDS (Quick Entry)
   ============================================================ */
.shortcut-section {
  background: var(--primary);
  padding: 0;
  border-bottom: 1px solid rgba(0,198,255,0.12);
}
.shortcut-grid {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.shortcut-grid::-webkit-scrollbar { display: none; }
.shortcut-item {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.shortcut-item:last-child { border-right: none; }
.shortcut-item:hover {
  background: rgba(0,198,255,0.1);
  color: var(--accent);
}
.shortcut-item svg { width: 28px; height: 28px; }
.shortcut-item.active { color: var(--accent); background: rgba(0,198,255,0.08); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 80px 0; }
.section-dark { background: var(--bg-mid); }
.section-darker { background: var(--bg-dark); }
.section-light { background: var(--bg-section); }
.section-white { background: #fff; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--primary);
  margin-bottom: 10px;
}
.section-header.light h2 { color: var(--text-white); }
.section-header p { color: var(--text-muted); font-size: 15px; }
.section-header.light p { color: var(--text-light); }
.section-title-line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ============================================================
   FEATURE CARDS (Trust Signals)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,198,255,0.12), rgba(0,198,255,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(0,198,255,0.2);
}
.feature-icon svg { width: 28px; height: 28px; color: var(--accent); }
.feature-card h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   GAME CATEGORY GRID (Product Distribution)
   ============================================================ */
.game-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.game-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,198,255,0.2);
  border-color: var(--accent);
}
.game-cat-card-inner {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
  position: relative;
  z-index: 1;
}
.game-cat-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,198,255,0.08) 0%, transparent 70%);
  transform: translate(30%, -30%);
}
.game-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,198,255,0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0,198,255,0.2);
  width: fit-content;
}
.game-cat-card h3 { font-size: 20px; color: var(--text-white); }
.game-cat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.game-cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
}
.game-cat-arrow svg { width: 16px; height: 16px; transition: transform var(--transition); }
.game-cat-card:hover .game-cat-arrow svg { transform: translateX(4px); }

/* ============================================================
   NEWS / CONTENT FEED (Article Cards)
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8f0f8;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.news-card-img {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  background: var(--bg-card);
  overflow: hidden;
}
.news-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
}
.news-card-img-placeholder svg { width: 40px; height: 40px; color: var(--accent); opacity: 0.4; }
.news-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card h4 { font-size: 14px; color: var(--primary); line-height: 1.4; }
.news-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.news-card-link {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

/* ============================================================
   LONGFORM CONTENT AREA
   ============================================================ */
.longform-section { background: #fff; }
.longform-content {
  max-width: 900px;
  margin: 0 auto;
}
.longform-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--primary);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}
.longform-content h3 {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--primary-light);
  margin: 24px 0 10px;
}
.longform-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}
.longform-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.longform-content ul li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 6px;
}
.longform-content strong { color: var(--primary); }
.longform-content a { color: var(--accent); font-weight: 600; }
.longform-content a:hover { color: var(--accent-dark); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg-section); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid #e0eaf5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  gap: 12px;
  user-select: none;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,198,255,0.1);
  border-radius: 50%;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  border-top: 1px solid #f0f5ff;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section { background: var(--bg-dark); }
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(0,198,255,0.2);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,198,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--text-white); font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; }
.cta-section p { color: var(--text-light); font-size: 15px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--accent);
  color: var(--primary);
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--accent);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.btn-cta-secondary {
  background: transparent;
  color: var(--text-white);
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-secondary:hover {
  border-color: var(--text-white);
  background: rgba(255,255,255,0.08);
  color: var(--text-white);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--bg-section);
  padding: 12px 0;
  border-bottom: 1px solid #e0eaf5;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb-sep { color: #ccc; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,198,255,0.08) 0%, transparent 70%);
}
.page-hero h1 {
  font-size: clamp(24px, 4vw, 40px);
  color: var(--text-white);
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   SLOTS PAGE - Archive/Listing Style
   ============================================================ */
.slots-filter-bar {
  background: var(--primary);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,198,255,0.15);
}
.slots-filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.slots-filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,198,255,0.2);
  border-color: var(--accent);
}
.slot-card-img {
  width: 100%;
  padding-top: 75%;
  position: relative;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  overflow: hidden;
}
.slot-card-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.slot-card-img-inner svg { width: 48px; height: 48px; color: var(--accent); opacity: 0.5; }
.slot-card-img-inner span { font-size: 11px; color: var(--text-muted); }
.slot-card-body { padding: 14px; }
.slot-card-body h4 { font-size: 14px; color: var(--text-white); margin-bottom: 4px; }
.slot-card-body p { font-size: 12px; color: var(--text-muted); }
.slot-card-provider {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}

/* ============================================================
   SPORTS PAGE - Event Listing Style
   ============================================================ */
.sports-events-list { display: flex; flex-direction: column; gap: 12px; }
.sport-event-card {
  background: #fff;
  border: 1px solid #e0eaf5;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.sport-event-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.sport-event-badge {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sport-event-badge svg { width: 24px; height: 24px; color: #fff; }
.sport-event-info { flex: 1; }
.sport-event-info h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.sport-event-info p { font-size: 13px; color: var(--text-muted); }
.sport-event-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,59,59,0.1);
  color: #ff3b3b;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,59,59,0.2);
}
.sport-event-time {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE - Story/Blog Style
   ============================================================ */
.about-story { background: #fff; }
.about-story-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.about-story-text h2 { font-size: clamp(20px, 2.5vw, 26px); color: var(--primary); margin-bottom: 16px; }
.about-story-text p { font-size: 15px; color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.about-story-text ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.about-story-text ul li { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 6px; }
.about-sidebar {
  background: var(--bg-section);
  border: 1px solid #e0eaf5;
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.about-sidebar h3 { font-size: 16px; color: var(--primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); }
.about-sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.about-sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.about-sidebar-links a:hover { background: rgba(0,198,255,0.08); color: var(--accent); }
.about-sidebar-links a svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e0eaf5;
}
.policy-content h2 { font-size: 20px; color: var(--primary); margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1px solid #e0eaf5; }
.policy-content h3 { font-size: 17px; color: var(--primary-light); margin: 20px 0 8px; }
.policy-content p { font-size: 14px; color: var(--text-body); line-height: 1.8; margin-bottom: 14px; }
.policy-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.policy-content ul li { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 5px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-page-inner { max-width: 500px; }
.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.15;
  margin-bottom: -20px;
}
.error-page h1 { font-size: 28px; color: var(--primary); margin-bottom: 12px; }
.error-page p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.error-nav-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.error-nav-links a {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--accent);
  color: var(--accent);
  transition: all var(--transition);
  text-decoration: none;
}
.error-nav-links a:hover { background: var(--accent); color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 2px solid rgba(0,198,255,0.15);
}
.footer-providers {
  background: var(--bg-mid);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-providers-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-providers-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.provider-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
}
.provider-logo:hover { color: var(--accent); border-color: rgba(0,198,255,0.3); }

.footer-main { padding: 48px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand {}
.footer-brand-logo { margin-bottom: 16px; }
.footer-brand-logo img,
.footer-brand-logo svg { height: 40px; width: auto; max-width: 160px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-links a svg { width: 12px; height: 12px; flex-shrink: 0; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent { color: var(--accent); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .game-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-story-content { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; --topbar-h: 0px; }
  .topbar { display: none; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-cta { gap: 6px; }
  .btn { padding: 7px 14px; font-size: 12px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .game-categories-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section { padding: 40px 0; }
  .section-lg { padding: 50px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .policy-content { padding: 24px 16px; }
  .banner-section img, .banner-section svg { max-height: 240px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .shortcut-item { min-width: 80px; font-size: 11px; }
  .error-code { font-size: 80px; }
}
