/* ============================================================
   DiamondExch99 — Premium Betting Platform CSS
   ============================================================ */

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

:root {
  --primary: #087bb5;
  --primary-dark: #065f8e;
  --highlight: #067fbd;
  --accent: #00d4ff;
  --accent-gold: #f0c040;
  --bg-dark: #020d1a;
  --bg-card: #051828;
  --bg-card2: #071e30;
  --text-primary: #e8f4fd;
  --text-muted: #7ab3cc;
  --border: rgba(0, 212, 255, 0.15);
  --glow: 0 0 20px rgba(0, 212, 255, 0.25);
  --glow-strong: 0 0 40px rgba(0, 212, 255, 0.4);
  --gradient-main: linear-gradient(135deg, #087bb5, #067fbd);
  --gradient-card: linear-gradient(145deg, #051828, #071e30);
  --gradient-hero: linear-gradient(135deg, #020d1a 0%, #041422 40%, #062035 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ── NAVBAR ── */
.navbar {
  background: rgba(2, 13, 26, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  transition: all 0.3s;
  z-index: 9999;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  height: 50px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.navbar-toggler {
  border: 1px solid var(--border);
  color: var(--accent);
}

.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300d4ff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: var(--text-muted) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-link:hover { color: var(--accent) !important; }
.nav-link:hover::after { left: 0.8rem; right: 0.8rem; }
.nav-link.active { color: var(--accent) !important; }

.nav-cta {
  background: var(--gradient-main);
  color: #fff !important;
  border-radius: 6px;
  padding: 0.4rem 1.2rem !important;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(8, 123, 181, 0.4);
  animation: pulse-glow 2.5s infinite;
}

.nav-cta::after { display: none; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(8, 123, 181, 0.4); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(8, 123, 181, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--accent), #7dd3f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  text-align: center;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--glow), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.3s;
}

.hero-card:hover { transform: translateY(-4px); }

.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);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.live-badge .dot { background: #ef4444; width: 6px; height: 6px; border-radius: 50%; animation: blink 1s infinite; }

/* ── BUTTONS ── */
.btn-primary-custom {
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(8, 123, 181, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5); color: #fff; }
.btn-primary-custom:hover::before { left: 100%; }

.btn-outline-custom {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 8px;
  padding: 0.75rem 1.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); color: #fff; }

.btn-gold {
  background: linear-gradient(135deg, #f0c040, #d4a017);
  color: #020d1a;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(240, 192, 64, 0.3);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(240, 192, 64, 0.5); color: #020d1a; }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 80px; right: 20px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 9998;
  text-decoration: none;
  animation: wa-bounce 2s infinite;
  transition: transform 0.3s;
}

.wa-float:hover { transform: scale(1.1); color: #fff; }

@keyframes wa-bounce {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.8); }
}

/* ── STICKY MOBILE CTA ── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(2, 13, 26, 0.97);
  border-top: 1px solid var(--border);
  padding: 0.6rem 1rem;
  display: none;
  gap: 0.5rem;
  z-index: 9997;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
}

.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 0.6rem;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── SECTIONS ── */
section { padding: 5rem 0; }
section.sm { padding: 3rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-label {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(90deg, var(--accent), #7dd3f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.8rem auto 0;
}

/* ── CARDS ── */
.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--glow);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  background: rgba(8, 123, 181, 0.15);
  border: 1px solid rgba(8, 123, 181, 0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── GAME CARDS ── */
.game-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: var(--glow);
}

.game-icon { font-size: 2.5rem; margin-bottom: 0.7rem; }

.game-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.game-card span { font-size: 0.75rem; color: var(--text-muted); }

/* ── SPORTS CARDS ── */
.sport-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}

.sport-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateX(4px);
  box-shadow: var(--glow);
}

.sport-icon {
  font-size: 2rem;
  width: 52px;
  flex-shrink: 0;
  text-align: center;
}

.sport-info h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.sport-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ── PROCESS STEPS ── */
.step-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--glow);
}

.step-num {
  width: 52px; height: 52px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 20px rgba(8, 123, 181, 0.4);
}

.step-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── ID TYPES ── */
.id-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 3px solid var(--primary);
  transition: all 0.3s;
}

.id-card:hover {
  border-left-color: var(--accent);
  box-shadow: var(--glow);
  transform: translateX(4px);
}

.id-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.id-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── MARQUEE ── */
.marquee-bar {
  background: rgba(8, 123, 181, 0.12);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-item .score { color: #22c55e; font-weight: 700; }
.marquee-item .live-dot { width: 6px; height: 6px; background: #ef4444; border-radius: 50%; animation: blink 1s infinite; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── FAQ ── */
.accordion-item {
  background: var(--gradient-card) !important;
  border: 1px solid var(--border) !important;
  margin-bottom: 0.5rem;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  background: transparent !important;
  color: #fff !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none !important;
  padding: 1.1rem 1.2rem;
}

.accordion-button:not(.collapsed) { color: var(--accent) !important; box-shadow: none !important; }
.accordion-button::after { filter: invert(1) brightness(2); }

.accordion-body {
  background: transparent !important;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
}

/* ── REVIEWS ── */
.review-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}

.stars { color: var(--accent-gold); font-size: 1rem; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 0.9rem; margin: 0.8rem 0; }
.reviewer { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: #fff; }
.review-meta { font-size: 0.75rem; color: var(--text-muted); }

/* ── NOTICE BANNER ── */
.notice-banner {
  background: linear-gradient(135deg, rgba(8,123,181,0.15), rgba(6,127,189,0.15));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notice-icon { font-size: 1.8rem; flex-shrink: 0; }
.notice-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--accent); margin-bottom: 0.3rem; }
.notice-text { color: var(--text-muted); font-size: 0.9rem; }

/* ── BENEFITS LIST ── */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.benefit-check {
  width: 22px; height: 22px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #22c55e;
  font-size: 0.7rem;
  margin-top: 2px;
}

.benefit-text { color: var(--text-muted); font-size: 0.95rem; }

/* ── FOOTER ── */
footer {
  background: #010a14;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
}

.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a::before { content: '›'; color: var(--primary); }

.footer-divider {
  border-color: var(--border);
  margin: 2rem 0 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright { color: var(--text-muted); font-size: 0.82rem; }
.footer-disclaimer {
  background: rgba(240, 192, 64, 0.08);
  border: 1px solid rgba(240, 192, 64, 0.15);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  color: #a0804a;
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

/* ── BREADCRUMB ── */
.page-hero {
  background: var(--gradient-hero);
  padding: 6rem 0 3rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(8,123,181,0.15) 0%, transparent 70%);
}

.breadcrumb { background: transparent; margin: 0; padding: 0; }
.breadcrumb-item a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-item.active { color: var(--accent); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}

.page-title span {
  background: linear-gradient(90deg, var(--accent), #7dd3f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CONTENT PROSE ── */
.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  margin: 2rem 0 0.8rem;
}

.prose h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 1.5rem 0 0.6rem;
}

.prose p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }

.prose ul { color: var(--text-muted); padding-left: 1.2rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.4rem; font-size: 0.95rem; }

.info-box {
  background: rgba(8, 123, 181, 0.1);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}

.info-box p { color: var(--text-primary) !important; margin: 0; }

/* ── TABLE ── */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.data-table th {
  background: rgba(8, 123, 181, 0.2);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 0.8rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.9rem;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(8,123,181,0.05); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MARKET ODDS TABLE ── */
.odds-table {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.odds-header {
  background: rgba(8,123,181,0.2);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.odds-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: #fff; }

.odds-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.odds-row:last-child { border-bottom: none; }
.odds-team { color: var(--text-primary); font-size: 0.9rem; }
.odds-back { background: rgba(8,123,181,0.25); color: #7dd3f0; padding: 0.3rem 0.8rem; border-radius: 4px; font-weight: 700; font-size: 0.85rem; }
.odds-lay { background: rgba(239,68,68,0.15); color: #fca5a5; padding: 0.3rem 0.8rem; border-radius: 4px; font-weight: 700; font-size: 0.85rem; }

/* ── CONTACT ── */
.contact-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover { border-color: rgba(0,212,255,0.3); box-shadow: var(--glow); }
.contact-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; }
.contact-card a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .hero { padding-top: 80px; padding-bottom: 100px; }
  .hero-visual { margin-top: 2rem; }
  .hero-stats { gap: 1.5rem; }
  body { padding-bottom: 70px; }
}

@media (max-width: 576px) {
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
}
