/* ============================================
   SkyExchangeID.com - Premium Betting Website
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2e2e2e;
  --bg-card: rgba(255, 255, 255, 0.05);
  --gold: #ffc523;
  --gold-dark: #e0a800;
  --gold-light: #ffd86b;
  --text-primary: #ffffff;
  --text-muted: #aaaaaa;
  --text-dark: #666666;
  --border-glass: rgba(255, 197, 35, 0.2);
  --shadow-gold: 0 0 30px rgba(255, 197, 35, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 50%, #1a1a1a 100%);
  --gradient-gold: linear-gradient(135deg, #ffc523, #ff9500);
  --gradient-card: linear-gradient(145deg, rgba(255,197,35,0.08), rgba(255,255,255,0.02));
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --navbar-height: 70px;
  --notice-height: 38px;
  --total-header-height: calc(var(--navbar-height) + var(--notice-height));
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 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: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Background pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,197,35,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,197,35,0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffc523' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

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.8rem); }

a { text-decoration: none; color: var(--gold); transition: var(--transition); }
a:hover { color: var(--gold-light); }

p { margin-bottom: 1rem; color: rgba(255,255,255,0.85); }

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

/* ===== SELECTION ===== */
::selection { background: var(--gold); color: #000; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(26, 26, 26, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  height: var(--navbar-height);
  transition: var(--transition);
  z-index: 1050;
  top: var(--notice-height, 38px) !important;
}

.navbar.scrolled {
  background: rgba(20, 20, 20, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar-brand img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255,197,35,0.4));
  transition: var(--transition);
}
.navbar-brand img:hover { filter: drop-shadow(0 0 15px rgba(255,197,35,0.7)); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
  background: rgba(255,197,35,0.08);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }

.btn-whatsapp-nav {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  border-radius: 25px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  border: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-whatsapp-nav:hover {
  background: linear-gradient(135deg, #128c7e, #25d366) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37,211,102,0.4);
  color: white !important;
}

.navbar-toggler {
  border: 1px solid var(--border-glass);
  padding: 4px 8px;
}
.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='rgba%28255, 197, 35, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  margin-top: var(--total-header-height);
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--gold);
  width: 30px;
  height: 4px;
  border-radius: 2px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255,197,35,0.3);
  border-radius: 50%;
  padding: 20px;
  background-size: 60%;
}

/* ===== HERO SECTION (for inner pages) ===== */
.page-hero {
  margin-top: var(--total-header-height);
  background: var(--gradient-hero);
  border-bottom: 2px solid var(--border-glass);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,197,35,0.08) 0%, transparent 70%);
}

.page-hero .badge-tag {
  display: inline-block;
  background: rgba(255,197,35,0.15);
  border: 1px solid rgba(255,197,35,0.4);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gradient-gold);
  color: #000 !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,197,35,0.5);
  color: #000 !important;
}
.btn-gold:hover::before { opacity: 1; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000 !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  color: white !important;
}

/* ===== GLASS CARDS ===== */
.glass-card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,197,35,0.5), transparent);
}

.glass-card:hover {
  border-color: rgba(255,197,35,0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

/* ===== SECTION STYLES ===== */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-header { text-align: center; margin-bottom: 50px; }

.section-header .section-label {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.section-header .section-label::before,
.section-header .section-label::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.5;
}

.section-header h2 { margin-bottom: 15px; }

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

.gold-text { color: var(--gold); }
.gold-gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 15px auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: rgba(255,197,35,0.08);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 20px 0;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== FEATURE CARDS ===== */
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,197,35,0.1);
  border: 1px solid rgba(255,197,35,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.glass-card:hover .feature-icon {
  background: rgba(255,197,35,0.2);
  box-shadow: 0 0 20px rgba(255,197,35,0.3);
}

/* ===== GAME CARDS ===== */
.game-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px) scale(1.02);
}

.game-card-body {
  padding: 20px;
}

.game-card-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.game-badge {
  display: inline-block;
  background: rgba(255,197,35,0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,197,35,0.3);
  margin-top: 8px;
}

/* ===== BETTING MARKETS TABLE ===== */
.market-table {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: hidden;
}

.market-table-header {
  background: rgba(255,197,35,0.1);
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-glass);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.market-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}

.market-row:last-child { border-bottom: none; }
.market-row:hover { background: rgba(255,197,35,0.04); }

.market-team { font-weight: 600; font-size: 0.9rem; }
.market-odd {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== ID TYPES SECTION ===== */
.id-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.id-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.id-card .id-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.id-card h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, rgba(255,197,35,0.08), rgba(255,149,0,0.05));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,197,35,0.1) 0%, transparent 70%);
}

/* ===== FAQ SECTION ===== */
.faq-section { padding: 80px 0; }

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  background: rgba(255,255,255,0.03) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  box-shadow: none !important;
  padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
  background: rgba(255,197,35,0.05) !important;
  border-bottom: 1px solid var(--border-glass);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(500%) hue-rotate(10deg);
}

.accordion-body {
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding: 20px;
  line-height: 1.8;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== FOOTER ===== */
footer {
  background: #111111;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 0;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(255,197,35,0.4));
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-heading {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 1px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border-glass);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-disclaimer {
  background: rgba(255,197,35,0.05);
  border: 1px solid rgba(255,197,35,0.2);
  border-radius: 8px;
  padding: 15px 20px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.breadcrumb { margin: 0; }
.breadcrumb-item { font-size: 0.85rem; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); content: "›"; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 60px 0; }

.content-block {
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
}

.content-block h2 {
  color: var(--gold);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-glass);
}

.content-block h3 {
  color: var(--text-primary);
  margin: 30px 0 15px;
}

.content-block ul {
  list-style: none;
  padding: 0;
}

.content-block ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: rgba(255,255,255,0.8);
}

.content-block ul li::before {
  content: '✦';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  top: 10px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: rgba(255,197,35,0.05);
  border: 1px solid rgba(255,197,35,0.3);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 25px;
  margin: 25px 0;
}

.highlight-box p:last-child { margin-bottom: 0; }

.warning-box {
  background: rgba(255,68,68,0.08);
  border: 1px solid rgba(255,68,68,0.3);
  border-left: 4px solid #ff4444;
  border-radius: 0 8px 8px 0;
  padding: 20px 25px;
  margin: 25px 0;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

/* ===== NOTICE BAR ===== */
.notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(255,197,35,0.1), rgba(255,197,35,0.05), rgba(255,197,35,0.1));
  border-bottom: 1px solid rgba(255,197,35,0.2);
  padding: 8px 0;
  overflow: hidden;
  z-index: 1060;
  height: var(--notice-height, 38px);
}

.notice-text,
.notice-ticker {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  animation: scrollText 30s linear infinite;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.notice-text span { color: var(--gold); font-weight: 700; }

@keyframes scrollText {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ===== TICKER LABEL ===== */
.ticker-label,
.notice-label {
  background: var(--gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 15px;
  flex-shrink: 0;
}

/* ===== PULSE ANIMATION ===== */
.pulse-gold {
  animation: pulseGold 2s infinite;
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,197,35,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(255,197,35,0); }
}

/* ===== STEP PROCESS ===== */
.step-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  margin: 0 auto 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(20,20,20,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 10px;
  }
  .navbar-nav .nav-link { padding: 10px 15px !important; }
  .section-pad { padding: 60px 0; }
}

@media (max-width: 767.98px) {
  :root { --navbar-height: 60px; --total-header-height: calc(60px + var(--notice-height)); }
  .section-pad { padding: 50px 0; }
  .glass-card { padding: 20px; }
  .whatsapp-float a { padding: 12px; border-radius: 50%; }
  .whatsapp-float a .wa-text { display: none; }
  .carousel-item img { max-height: 220px; }
  .stats-bar .stat-number { font-size: 1.5rem; }
}

@media (max-width: 575.98px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn-gold, .btn-whatsapp { padding: 10px 20px; font-size: 0.9rem; }
  .section-pad { padding: 40px 0; }
}

/* ===== UTILITIES ===== */
.bg-dark-card { background: var(--bg-card); }
.border-gold { border-color: var(--gold) !important; }
.text-gold { color: var(--gold); }
.text-muted-custom { color: var(--text-muted); }
.rounded-custom { border-radius: var(--radius); }
.rounded-lg-custom { border-radius: var(--radius-lg); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== PAGE SPECIFIC ===== */
.sport-icon { font-size: 3rem; margin-bottom: 15px; display: block; }

.market-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.market-badge.live { background: rgba(255,68,68,0.2); color: #ff6b6b; border: 1px solid rgba(255,68,68,0.4); }
.market-badge.upcoming { background: rgba(255,197,35,0.15); color: var(--gold); border: 1px solid rgba(255,197,35,0.3); }
.market-badge.hot { background: rgba(255,100,0,0.15); color: #ff8800; border: 1px solid rgba(255,100,0,0.3); }

.table-dark-custom {
  --bs-table-bg: transparent;
  --bs-table-border-color: rgba(255,197,35,0.1);
  color: var(--text-primary);
}

.table-dark-custom thead th {
  background: rgba(255,197,35,0.1);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-color: rgba(255,197,35,0.2);
  padding: 14px 16px;
}

.table-dark-custom tbody tr:hover { background: rgba(255,197,35,0.03); }
.table-dark-custom td { padding: 12px 16px; vertical-align: middle; }