/*
Theme Name: BetBlaze
Theme URI: https://example.com
Author: BetBlaze
Author URI: https://example.com
Description: A dark, gold-accented sports exchange theme inspired by live betting dashboards. Features a left sport-category sidebar, live event feed, casino game grid, and floating WhatsApp CTA — all built natively without any page builder.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: betblaze
Tags: dark, sports, betting, casino, custom-menu, custom-logo, featured-images, full-width-template, responsive-layout, threaded-comments
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --gold-dim:    rgba(212,175,55,0.18);
  --gold-border: rgba(212,175,55,0.30);
  --bg-deep:     #0d0d0d;
  --bg-card:     #1a1a1a;
  --bg-card-alt: #222222;
  --bg-header:   #111111;
  --bg-sidebar:  #141414;
  --text-base:   #e8e8e8;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --live-red:    #e63946;
  --live-red-bg: rgba(230,57,70,0.15);
  --green:       #25D366;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-gold: 0 0 40px rgba(212,175,55,0.12), 0 8px 32px rgba(0,0,0,0.6);
  --font-display: 'Rajdhani', 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', 'Nunito', sans-serif;
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-deep);
  color: var(--text-base);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ============================================================
   LAYOUT SCAFFOLD
   ============================================================ */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-area {
  display: flex;
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
  gap: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--gold-border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 16px rgba(212,175,55,0.4);
}

.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.site-logo .logo-text span {
  color: #fff;
}

/* Primary Nav */
.primary-nav {
  flex: 1;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item a {
  color: var(--gold);
  background: var(--gold-dim);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(212,175,55,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  box-shadow: 0 0 24px rgba(212,175,55,0.5);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  color: var(--gold);
  flex-direction: column;
  gap: 4px;
  width: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}

/* ============================================================
   SPORT SIDEBAR
   ============================================================ */
.sport-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--gold-border);
  padding: 20px 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-border) transparent;
}

.sport-sidebar::-webkit-scrollbar { width: 4px; }
.sport-sidebar::-webkit-scrollbar-track { background: transparent; }
.sport-sidebar::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }

.sidebar-section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 18px 8px;
  margin-top: 8px;
}

.sport-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border-left: 3px solid transparent;
  text-decoration: none;
}

.sport-nav-item:hover,
.sport-nav-item.active {
  color: var(--gold);
  background: var(--gold-dim);
  border-left-color: var(--gold);
}

.sport-nav-item .sport-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sport-nav-item.active .sport-icon {
  background: var(--gold-dim);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 20px 20px 40px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--gold);
  border-radius: 2px;
}

.section-more {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}
.section-more:hover { color: var(--gold); }

/* ============================================================
   LIVE EVENT CARDS
   ============================================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  border-radius: 0 2px 2px 0;
}

.event-card:hover {
  background: var(--bg-card-alt);
  border-color: var(--gold-border);
  transform: translateX(3px);
}
.event-card:hover::before { transform: scaleY(1); }

.event-info {}

.event-teams {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}

.event-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta .league-name {
  color: var(--text-dim);
}

.event-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--live-red-bg);
  color: var(--live-red);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live-red);
  animation: pulse-dot 1.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.event-bm-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-bet {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-bet:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  box-shadow: 0 0 16px rgba(212,175,55,0.4);
  transform: translateY(-1px);
}

/* ============================================================
   CASINO GAME GRID
   ============================================================ */
.casino-section { margin-bottom: 28px; }

.provider-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.provider-tab {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.provider-tab:hover,
.provider-tab.active {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.game-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-border);
}

.game-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.game-label {
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card:hover .game-label { color: var(--gold); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-section { margin-bottom: 28px; }

.comparison-table-wrap {
  background: var(--bg-card);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.comparison-table-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 22px 28px;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.comparison-table-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  animation: shimmer-rotate 10s linear infinite;
}

@keyframes shimmer-rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.comparison-table-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(212,175,55,0.4);
  position: relative;
  z-index: 1;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table tbody tr {
  background: var(--bg-card);
  transition: all var(--transition);
  position: relative;
}

.comparison-table tbody tr:nth-child(even) { background: var(--bg-card-alt); }

.comparison-table tbody tr:hover {
  background: rgba(212,175,55,0.06);
  transform: translateX(4px);
}

.comparison-table td {
  padding: 18px 24px;
  color: var(--text-base);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.comparison-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 32%;
  border-right: 1px solid rgba(212,175,55,0.12);
}

/* ============================================================
   HERO BANNER (homepage)
   ============================================================ */
.hero-banner {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 60%, #0d0d0d 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-title .accent { color: var(--gold); }

.hero-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gold-border);
  flex-wrap: wrap;
}

.hero-stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-alt);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
  border: 1px solid var(--gold-border);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SPORTS CATEGORIES BAR
   ============================================================ */
.sport-tabs-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.sport-tabs-bar::-webkit-scrollbar { display: none; }

.sport-tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.sport-tab:hover,
.sport-tab.active {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--green);
  color: #fff;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  white-space: nowrap;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  background: #1da851;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  transform: translateY(calc(-50% - 2px));
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--gold-border);
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   PAYMENT LOGOS ROW
   ============================================================ */
.payment-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.payment-badge {
  background: var(--bg-card-alt);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ============================================================
   STEP GUIDE
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 18px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { margin-bottom: 28px; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  color: var(--text-base);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  gap: 12px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

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

.faq-question.active { color: var(--gold); }

.faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 16px;
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.testimonials-section { margin-bottom: 28px; }

.testimonials-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex-shrink: 0;
  width: 260px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: var(--gold-border); }

.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

.testimonial-location {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ============================================================
   SINGLE / PAGE / BLOG
   ============================================================ */
.page-header-wrap {
  background: var(--bg-card);
  border-bottom: 1px solid var(--gold-border);
  padding: 28px 0;
  margin-bottom: 28px;
}

.page-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.entry-content {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 760px;
}

.entry-content h2,
.entry-content h3 {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 1px;
  margin: 24px 0 10px;
}

.entry-content p { margin-bottom: 14px; }
.entry-content a { color: var(--gold); }
.entry-content a:hover { text-decoration: underline; }

/* Blog grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

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

.post-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card-alt);
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.post-card-body { padding: 18px; }

.post-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.post-card-title a { color: #fff; }
.post-card-title a:hover { color: var(--gold); }

.post-card-excerpt {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.post-card-meta {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ============================================================
   WIDGETS
   ============================================================ */
.widget-area {
  width: 260px;
  flex-shrink: 0;
  padding: 20px 0 20px 20px;
}

.widget {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 14px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
}

.widget ul li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { font-size: 0.82rem; color: var(--text-muted); }
.widget ul li a:hover { color: var(--gold); }

/* ============================================================
   UTILITY
   ============================================================ */
.gold-text { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 4px; }
.mt-20 { margin-top: 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -999px;
  left: 8px;
  z-index: 999;
  background: var(--gold);
  color: #000;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
}

.skip-link:focus { top: 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .sport-sidebar { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 14px; }
  .primary-nav { display: none; }
  .primary-nav.open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-header); border-bottom: 1px solid var(--gold-border); padding: 14px 0; z-index: 190; }
  .primary-nav.open ul { flex-direction: column; gap: 0; }
  .primary-nav.open ul li a { display: block; padding: 10px 20px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .content-area { padding: 0 10px; }
  .main-content { padding: 14px 10px 32px; }
  .hero-banner { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { padding: 10px 12px; font-size: 0; gap: 0; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .event-card { grid-template-columns: 1fr auto; }
  .event-time, .event-bm-badge { display: none; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .hero-title { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
}
