/* ============================================================
   SPORIA.IT.COM - Global Stylesheet
   Target: Bangladesh | Language: Bengali (bn-BD)
   Theme: FIFA World Cup 2026 Information Portal
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --color-primary: #1a6b3c;
  --color-primary-dark: #0f4526;
  --color-primary-light: #2ecc71;
  --color-accent: #f39c12;
  --color-accent-dark: #d68910;
  --color-bg-dark: #0a1f12;
  --color-bg-mid: #0f2d1a;
  --color-bg-section: #f5f9f6;
  --color-bg-card: #ffffff;
  --color-text-main: #1a1a1a;
  --color-text-muted: #5a6a60;
  --color-text-light: #ffffff;
  --color-border: #d4e8da;
  --color-shadow: rgba(26, 107, 60, 0.12);
  --color-shadow-strong: rgba(26, 107, 60, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-card: 0 2px 16px var(--color-shadow);
  --shadow-hover: 0 8px 32px var(--color-shadow-strong);
  --transition: 0.25s ease;
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container-max: 1200px;
  --header-height: 90px;
}

/* ---- 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(--color-text-main);
  background: #f0f4f1;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-stack);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary-dark);
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Top info bar */
.header-topbar {
  background: var(--color-primary-dark);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(46,204,113,0.2);
}
.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left span { margin-right: 16px; }
.topbar-right a {
  color: rgba(255,255,255,0.7);
  margin-left: 12px;
  font-size: 11px;
}
.topbar-right a:hover { color: var(--color-primary-light); }

/* Main header row */
.header-main {
  height: 70px;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 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;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--color-primary-light);
  background: rgba(46,204,113,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: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  color: white;
  box-shadow: 0 4px 15px rgba(46,204,113,0.3);
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,204,113,0.4);
  color: white;
}
.btn-login {
  background: transparent;
  color: var(--color-primary-light);
  border: 2px solid var(--color-primary-light);
}
.btn-login:hover {
  background: var(--color-primary-light);
  color: var(--color-bg-dark);
}

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 999;
}
.mobile-nav-panel {
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 100%;
  background: var(--color-bg-dark);
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-panel .nav-links { flex-direction: column; align-items: flex-start; gap: 4px; }
.mobile-nav-panel .nav-links a { display: block; width: 100%; padding: 12px 16px; }
.mobile-nav-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
  display: block;
}
.mobile-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.mobile-cta-row .btn { flex: 1; font-size: 13px; padding: 10px 12px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--color-bg-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(46,204,113,0.15);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--color-primary-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: rgba(255,255,255,0.8); }

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-dark);
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 60px 0;
}
.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}
.section-mid {
  background: var(--color-bg-mid);
  color: var(--color-text-light);
}
.section-light {
  background: var(--color-bg-section);
}
.section-white {
  background: #ffffff;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 32px;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}
.section-title.light h2 { color: white; }
.section-title p {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-title.light p { color: rgba(255,255,255,0.7); }
.section-title .title-accent {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ============================================================
   SHORTCUT ICON GRID (Homepage quick-entry blocks)
   ============================================================ */
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 30px 0;
}
.shortcut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(46,204,113,0.15);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
}
.shortcut-item:hover {
  background: rgba(46,204,113,0.12);
  border-color: var(--color-primary-light);
  transform: translateY(-4px);
  color: var(--color-primary-light);
}
.shortcut-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.shortcut-label {
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   CONTENT FEED / CARD GRID
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.5);
}
.card-body {
  padding: 20px;
}
.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-light);
  background: rgba(46,204,113,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.card-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { color: var(--color-primary-light); }

/* Dark card variant */
.card-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(46,204,113,0.15);
  color: white;
}
.card-dark .card-title { color: white; }
.card-dark .card-excerpt { color: rgba(255,255,255,0.7); }

/* ============================================================
   MAIN CONTENT + SIDEBAR LAYOUT
   ============================================================ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.sidebar-widget {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.sidebar-widget h3 {
  font-size: 16px;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary-light);
}
.sidebar-links li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  font-size: 14px;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-links a:hover { color: var(--color-primary); }

/* ============================================================
   ARTICLE / LONG-FORM CONTENT
   ============================================================ */
.article-content {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.article-content h1 {
  font-size: 32px;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.article-content h2 {
  font-size: 24px;
  color: var(--color-primary-dark);
  margin: 36px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary-light);
}
.article-content h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin: 28px 0 12px;
}
.article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-main);
  margin-bottom: 16px;
}
.article-content ul, .article-content ol {
  margin: 16px 0 16px 24px;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-main);
  margin-bottom: 8px;
}
.article-content strong { color: var(--color-primary-dark); }
.article-content a { color: var(--color-primary); font-weight: 600; }
.article-content a:hover { color: var(--color-primary-light); }
.article-content blockquote {
  background: var(--color-bg-section);
  border-left: 4px solid var(--color-primary-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--color-text-muted);
}

/* ============================================================
   STATS / FEATURE BLOCKS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(46,204,113,0.2);
}
.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* Feature list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: white;
}
.feature-text h4 {
  font-size: 16px;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  font-family: var(--font-stack);
}
.faq-question:hover { color: var(--color-primary); }
.faq-question.active { color: var(--color-primary); background: rgba(46,204,113,0.05); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }
.faq-answer a { color: var(--color-primary); font-weight: 600; }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section {
  background: var(--color-bg-dark);
  padding: 60px 0;
}
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.video-title {
  text-align: center;
  margin-bottom: 24px;
}
.video-title h2 { color: white; font-size: 28px; }
.video-title p { color: rgba(255,255,255,0.7); margin-top: 8px; }
.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);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46,204,113,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-primary {
  background: white;
  color: var(--color-primary-dark);
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  color: var(--color-primary-dark);
}
.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 700;
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
}

/* ============================================================
   ARCHIVE / LISTING PAGE
   ============================================================ */
.archive-header {
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-bg-mid));
  padding: 50px 0 40px;
  text-align: center;
  border-bottom: 3px solid var(--color-primary-light);
}
.archive-header h1 {
  font-size: 36px;
  color: white;
  margin-bottom: 12px;
}
.archive-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.post-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.4);
}
.post-card-body {
  padding: 24px;
}
.post-card-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}
.post-card-title {
  font-size: 20px;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.post-card-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.post-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   SLOTS / GAME GRID
   ============================================================ */
.game-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid var(--color-border);
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-stack);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.game-card-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}
.game-card-info {
  padding: 14px;
}
.game-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}
.game-card-provider {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ============================================================
   SPORTS PAGE
   ============================================================ */
.sports-hero {
  background: linear-gradient(135deg, #0a1f12 0%, #1a3d25 50%, #0f2d1a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.sports-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(46,204,113,0.05)' stroke-width='2'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.sports-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.sports-hero h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
}
.sports-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
}

.match-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.match-table th {
  background: var(--color-primary-dark);
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.match-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-main);
}
.match-table tr:last-child td { border-bottom: none; }
.match-table tr:hover td { background: var(--color-bg-section); }
.match-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}
.status-live { background: rgba(231,76,60,0.1); color: #e74c3c; }
.status-upcoming { background: rgba(46,204,113,0.1); color: var(--color-primary); }
.status-finished { background: rgba(90,106,96,0.1); color: var(--color-text-muted); }

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-bg-mid));
  padding: 80px 0;
  text-align: center;
}
.about-hero h1 {
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
}
.about-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary-light), var(--color-accent));
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary-light);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-section {
  margin-bottom: 40px;
}
.policy-section h2 {
  font-size: 22px;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}
.policy-section p {
  font-size: 15px;
  color: var(--color-text-main);
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 12px;
}
.policy-section li {
  font-size: 15px;
  color: var(--color-text-main);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}
.footer-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary-light);
  display: inline-block;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--color-primary-light); }

/* Contact info */
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(46,204,113,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--color-primary-light);
}
.contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.contact-text strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* Footer middle - payment methods */
.footer-mid {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-mid-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.payment-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links a:hover { color: var(--color-primary-light); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-bg-mid));
}
.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.8;
}
.error-title {
  font-size: 32px;
  color: white;
  margin-bottom: 16px;
}
.error-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 500px;
}
.error-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-error {
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-error-primary {
  background: var(--color-primary-light);
  color: var(--color-bg-dark);
}
.btn-error-primary:hover {
  background: white;
  color: var(--color-primary-dark);
}
.btn-error-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-error-secondary:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.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; }
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.badge-new {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-hot {
  background: #e74c3c;
}
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 40px 0;
}
.divider-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  border-radius: 2px;
  margin: 40px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }
  .header-main { height: 60px; }
  .site-logo img, .site-logo svg { height: 36px; max-height: 36px; }
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-cta { gap: 8px; }
  .btn { padding: 8px 14px; font-size: 13px; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-mid-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-img { height: 200px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .article-content { padding: 24px; }
  .article-content h1 { font-size: 24px; }
  .article-content h2 { font-size: 20px; }
  .sports-hero h1 { font-size: 32px; }
  .about-hero h1 { font-size: 30px; }
  .cta-section h2 { font-size: 26px; }
  .error-code { font-size: 80px; }
  .section { padding: 40px 0; }
  .section-title h2 { font-size: 24px; }
}

@media (max-width: 480px) {
  .shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .error-links { flex-direction: column; align-items: center; }
  .header-cta .btn-login { display: none; }
}
