/* ============================================================
   1XBETASIABD.COM — Premium Betting Affiliate Platform
   Complete Stylesheet v1.0
   ============================================================ */

/* ------ CSS Variables ------ */
:root {
  --bg-primary: #020817;
  --bg-secondary: #0a1628;
  --bg-surface: #0d1e35;
  --bg-card: #111f36;
  --bg-card-hover: #162947;
  --border: rgba(30, 80, 140, 0.4);
  --border-bright: rgba(26, 158, 255, 0.3);
  --primary: #1a9eff;
  --primary-dark: #0077cc;
  --primary-light: #4db8ff;
  --primary-glow: rgba(26, 158, 255, 0.25);
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --green: #22c55e;
  --red: #ef4444;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(26, 158, 255, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.3s ease;
}

/* ------ Reset & Base ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--bg-surface); color: var(--text-secondary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
tr:hover td { background: rgba(26, 158, 255, 0.04); }

/* ------ Scrollbar ------ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-surface); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ------ Typography ------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-primary); font-weight: 600; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

/* ------ Layout ------ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }

/* ------ Buttons ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover { box-shadow: 0 6px 30px rgba(26, 158, 255, 0.5); transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover { box-shadow: 0 6px 30px rgba(245, 158, 11, 0.5); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--border-bright); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-xl { padding: 1.2rem 3rem; font-size: 1.15rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

.btn-pulse {
  animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(26, 158, 255, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(26, 158, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 158, 255, 0); }
}

/* ------ Cards ------ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover { border-color: var(--border-bright); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card-sm { padding: 1.25rem; border-radius: var(--radius); }
.card-flat { transform: none !important; }
.card-flat:hover { transform: none !important; }

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover .card-icon {
  background: var(--primary-glow);
  border-color: var(--primary);
}

/* ------ Badges ------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-primary { background: rgba(26, 158, 255, 0.15); color: var(--primary); border: 1px solid rgba(26, 158, 255, 0.3); }
.badge-gold { background: rgba(245, 158, 11, 0.15); color: var(--gold); border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-green { background: rgba(34, 197, 94, 0.15); color: var(--green); border: 1px solid rgba(34, 197, 94, 0.3); }
.badge-red { background: rgba(239, 68, 68, 0.15); color: var(--red); border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-new { background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #fff; }
.badge-hot { background: linear-gradient(135deg, #ef4444, #f97316); color: #fff; }

/* Live dot */
.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: live-pulse 1.5s infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ------ Section Headers ------ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(2, 8, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: rgba(26, 158, 255, 0.08);
}
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(2, 8, 23, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  z-index: 999;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); padding-left: 1.5rem; }
.mobile-nav .btn { display: block; width: 100%; margin-top: 1rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-card);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--bg-surface); color: var(--primary); }
.dropdown-menu a .di { font-size: 1rem; }

/* ------ Promo Bar ------ */
.promo-bar {
  background: linear-gradient(90deg, var(--bg-secondary), var(--primary-dark), var(--bg-secondary));
  background-size: 200% 100%;
  animation: promo-scroll 4s linear infinite;
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1001;
}
@keyframes promo-scroll {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.promo-bar span { color: var(--gold); margin: 0 0.5rem; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 158, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(26, 158, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 158, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(26, 158, 255, 0.1);
  border: 1px solid rgba(26, 158, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}
.hero h1 {
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-promo {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease 0.35s both;
}
.promo-code-box {
  background: var(--bg-surface);
  border: 2px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius);
  padding: 0.4rem 1rem;
  font-family: 'Courier New', monospace;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  user-select: all;
}
.promo-code-box:hover { background: rgba(245, 158, 11, 0.1); border-color: var(--gold); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.trust-item svg, .trust-item i { color: var(--green); }

/* Hero right side */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card), 0 0 60px rgba(26, 158, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.hero-stat {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   STATS / COUNTER SECTION
   ========================================== */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--bg-secondary);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-item.animated::before { opacity: 1; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ==========================================
   BONUS SECTION
   ========================================== */
.bonus-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26, 158, 255, 0.05) 100%);
  border: 1px solid rgba(26, 158, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.bonus-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 158, 255, 0.08), transparent 70%);
  pointer-events: none;
}
.bonus-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.bonus-feature i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

/* Promo Code Display */
.promo-display {
  background: var(--bg-surface);
  border: 2px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0;
}
.promo-display .code {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.copy-btn {
  padding: 0.4rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.copy-btn:hover { background: var(--gold); color: #fff; }
.copy-btn.copied { background: var(--green); border-color: var(--green); color: #fff; }

/* ==========================================
   GAMES / SPORTS GRID
   ========================================== */
.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition);
}
.game-card:hover { transform: scale(1.03); }
.game-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.game-card:hover .game-card-bg { transform: scale(1.1); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.game-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.game-card-content h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.game-card-content p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }

/* Sport icons background colors */
.sport-cricket { background: linear-gradient(135deg, #1a472a, #2d7a4a); }
.sport-football { background: linear-gradient(135deg, #1a3a5c, #2066a8); }
.sport-casino { background: linear-gradient(135deg, #4a1a1a, #8b2020); }
.sport-aviator { background: linear-gradient(135deg, #1a1a4a, #2d2da8); }
.sport-tennis { background: linear-gradient(135deg, #3d1a5c, #7c2da8); }
.sport-basketball { background: linear-gradient(135deg, #4a2a1a, #a85c20); }

/* ==========================================
   PAYMENT METHODS
   ========================================== */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.payment-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition);
}
.payment-pill:hover { border-color: var(--primary); box-shadow: 0 0 15px var(--primary-glow); }
.payment-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.7rem;
}
.pi-bkash { background: #E2136E; color: #fff; }
.pi-nagad { background: #F7941D; color: #fff; }
.pi-rocket { background: #8C3494; color: #fff; }
.pi-crypto { background: #f7931a; color: #fff; }
.pi-visa { background: #1a1f71; color: #fff; }
.pi-master { background: #eb001b; color: #fff; }

/* ==========================================
   HOW TO REGISTER / STEP SECTION
   ========================================== */
.steps-container { position: relative; }
.steps-line {
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), transparent);
}
.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.step-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px var(--primary-glow);
}
.step-content { padding-top: 0.75rem; }
.step-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-bright); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--bg-card);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { display: block; }

/* ==========================================
   BLOG / ARTICLES
   ========================================== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-meta span { font-size: 0.8rem; color: var(--text-muted); }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-body h3 a { color: var(--text-primary); transition: color var(--transition); }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { font-size: 0.9rem; margin-bottom: 1rem; }

/* ==========================================
   FLOATING / STICKY ELEMENTS
   ========================================== */
.floating-buttons {
  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-telegram { background: #2CA5E0; color: #fff; }
.float-whatsapp { background: #25D366; color: #fff; }
.float-register {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  width: 56px; height: 56px;
  animation: pulse-border 2s infinite;
}

/* Mobile bottom bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(2, 8, 23, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
.mobile-cta-bar .btn { flex: 1; padding: 0.8rem 1rem; font-size: 0.9rem; }

/* Sticky register button */
.sticky-register {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 800;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 1.25rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 0 20px var(--primary-glow);
  transition: all var(--transition);
}
.sticky-register:hover { padding-right: 1rem; background: linear-gradient(180deg, #00e5ff, var(--primary)); }

/* ==========================================
   TRUST / FEATURES SECTION
   ========================================== */
.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.trust-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.trust-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
}
.trust-card:hover .trust-icon {
  background: var(--primary-glow);
  border-color: var(--primary);
}
.trust-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 1rem 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-secondary); }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 158, 255, 0.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .subtitle { font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ==========================================
   INFO BOXES
   ========================================== */
.info-box {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid;
  margin: 1.5rem 0;
}
.info-box-blue { background: rgba(26, 158, 255, 0.08); border-color: var(--primary); }
.info-box-gold { background: rgba(245, 158, 11, 0.08); border-color: var(--gold); }
.info-box-green { background: rgba(34, 197, 94, 0.08); border-color: var(--green); }
.info-box-red { background: rgba(239, 68, 68, 0.08); border-color: var(--red); }
.info-box p { margin: 0; color: var(--text-secondary); }
.info-box strong { color: var(--text-primary); }

/* ==========================================
   FEATURE LIST
   ========================================== */
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.feature-item i.check { color: var(--green); flex-shrink: 0; margin-top: 0.2rem; }
.feature-item i.cross { color: var(--red); flex-shrink: 0; margin-top: 0.2rem; }

/* ------ Content Article Styles ------ */
.article-content h2 { margin: 2.5rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.article-content h3 { margin: 2rem 0 0.75rem; }
.article-content h4 { margin: 1.5rem 0 0.75rem; }
.article-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.5rem; color: var(--text-secondary); }
.article-content table { margin: 1.5rem 0; }
.article-content .btn { margin: 0.5rem 0; }

/* ==========================================
   SIDEBAR
   ========================================== */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.widget-header {
  background: var(--bg-surface);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.widget-body { padding: 1.25rem; }
.widget-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.widget-link:last-child { border-bottom: none; }
.widget-link:hover { color: var(--primary); }
.widget-link i { font-size: 0.75rem; color: var(--primary); }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.footer-disclaimer {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.footer-disclaimer p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* AOS-like scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Glow effects */
.glow-blue { box-shadow: 0 0 30px var(--primary-glow); }
.glow-gold { box-shadow: 0 0 30px var(--gold-glow); }

/* Shimmer skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-card) 50%, var(--bg-surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

/* ==========================================
   LIVE CASINO SPECIFIC
   ========================================== */
.live-table-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(139, 32, 32, 0.15));
  border: 1px solid rgba(139, 32, 32, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}
.live-table-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 30px rgba(139, 32, 32, 0.2);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================
   AVIATOR GAME SPECIFIC
   ========================================== */
.aviator-card {
  background: linear-gradient(135deg, #0a0a2e, #1a1a5c);
  border: 1px solid rgba(77, 77, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.aviator-card::before {
  content: '✈️';
  position: absolute;
  font-size: 8rem;
  opacity: 0.05;
  right: -20px;
  top: -20px;
}
.multiplier-display {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #ff4757;
  text-shadow: 0 0 30px rgba(255, 71, 87, 0.5);
}

/* ==========================================
   CRICKET SPECIFIC
   ========================================== */
.cricket-match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}
.cricket-match-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}
.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.team-flag {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: var(--bg-surface);
}
.team-name { font-weight: 700; font-size: 0.9rem; }
.vs-divider {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.8rem;
}
.odds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
.odd-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.odd-btn:hover { background: var(--primary-glow); border-color: var(--primary); }
.odd-label { font-size: 0.7rem; color: var(--text-muted); display: block; }
.odd-value { font-weight: 800; color: var(--primary); font-size: 0.9rem; }

/* ==========================================
   UTILITY
   ========================================== */
.hidden { display: none; }
.show { display: block; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.py-1 { padding: 0.5rem 0; }
.py-2 { padding: 1rem 0; }
.py-4 { padding: 2rem 0; }
.px-2 { padding: 0 1rem; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius); }
.rounded-full { border-radius: var(--radius-full); }
.border { border: 1px solid var(--border); }
.bg-surface { background: var(--bg-surface); }
.bg-card { background: var(--bg-card); }
.bg-secondary { background: var(--bg-secondary); }
.separator { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ------ Layout helpers ------ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.content-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 5rem 0 4rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .sticky-register { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .three-col { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sidebar { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
  .floating-buttons { bottom: 7rem; right: 1rem; }
  .float-btn { width: 44px; height: 44px; font-size: 1.1rem; }
  .match-teams { gap: 0.5rem; }
}

@media (max-width: 400px) {
  .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
}

/* Print styles */
@media print {
  .navbar, .floating-buttons, .mobile-cta-bar, .sticky-register { display: none; }
  .hero { min-height: auto; }
}
