/* ============================================
   🎨 THEME PREMIUM — SaaS Paris Sportifs
   ============================================ */

:root {
  /* Palette principale */
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --bg-card: rgba(30, 41, 59, 0.65);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.75);

  /* Accents */
  --accent-green: #10B981;
  --accent-cyan: #06B6D4;
  --accent-purple: #8B5CF6;
  --accent-amber: #F59E0B;
  --accent-red: #EF4444;
  --accent-blue: #3B82F6;

  /* Texte */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Bordures */
  --border-light: rgba(148, 163, 184, 0.12);
  --border-accent: rgba(16, 185, 129, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
  --gradient-hero: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,1) 100%);
  --gradient-card: linear-gradient(135deg, rgba(30,41,59,0.8) 0%, rgba(15,23,42,0.9) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 20px rgba(16,185,129,0.15);
  --shadow-accent: 0 4px 20px rgba(16,185,129,0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-green); border-radius: var(--radius-full); }

/* ============================================
   TYPOGRAPHIE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

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

.text-muted-custom { color: var(--text-muted); }

/* ============================================
   COMPOSANTS RÉUTILISABLES
   ============================================ */

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

/* Bouton Premium */
.btn-premium {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

.btn-premium:hover::before { left: 100%; }

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  color: #fff;
}

.btn-premium:active { transform: translateY(0); }

/* Bouton Outline */
.btn-outline-premium {
  background: transparent;
  color: var(--accent-green);
  border: 1.5px solid var(--accent-green);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.btn-outline-premium:hover {
  background: var(--accent-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* Badge */
.badge-vip {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-premium {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-live {
  background: var(--accent-red);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  animation: pulse-live 2s infinite;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar-premium {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-premium .navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.5px;
}

.navbar-premium .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
  color: var(--accent-green) !important;
  background: rgba(16, 185, 129, 0.08);
}

/* Menu Hamburger */
.navbar-toggler {
  border: 1px solid var(--border-light);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.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%28148, 163, 184, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(16,185,129,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(6,182,212,0.06) 0%, transparent 50%);
  animation: hero-bg-move 20s linear infinite;
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Stats Hero */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  min-width: 120px;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-green);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.section-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ============================================
   MATCH CARDS
   ============================================ */
.match-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: all var(--transition-normal);
  overflow: hidden;
  position: relative;
}

.match-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.match-league {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.match-time {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.match-teams {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.match-team {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-logo {
  width: 28px;
  height: 28px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.team-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.team-name.away { color: var(--text-secondary); }

.match-vs {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0.25rem 0;
}

/* Odds Grid */
.odds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.odd-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.odd-btn:hover {
  border-color: var(--accent-green);
  background: rgba(16, 185, 129, 0.08);
}

.odd-btn.selected {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--accent-green);
  box-shadow: 0 0 12px rgba(16,185,129,0.2);
}

.odd-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.odd-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.odd-btn.selected .odd-value {
  color: var(--accent-green);
}

/* ============================================
   SLIDER MATCHS
   ============================================ */
.matches-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.matches-slider::-webkit-scrollbar { display: none; }

.matches-slider .match-card {
  scroll-snap-align: start;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
}

.slider-track {
  display: flex;
  gap: 1rem;
}

/* ============================================
   PREMIUM COMBO CARDS
   ============================================ */
.combo-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.combo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.combo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-primary);
}

.combo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.combo-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.combo-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.combo-odds {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-green);
  margin: 1rem 0;
}

.combo-matches-preview {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.combo-match-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.combo-match-item .odd-small {
  margin-left: auto;
  font-weight: 700;
  color: var(--accent-green);
}

/* Blur Locked Content */
.combo-locked .combo-matches-preview {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.lock-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.lock-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================================
   BETSLIP
   ============================================ */
.betslip-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  transition: transform var(--transition-slow);
}

.betslip-mobile {
  background: var(--bg-secondary);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
  max-height: 85vh;
  overflow-y: auto;
}

.betslip-handle {
  width: 40px;
  height: 4px;
  background: var(--text-muted);
  border-radius: var(--radius-full);
  margin: 0.75rem auto;
  cursor: pointer;
}

.betslip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.betslip-tabs {
  display: flex;
  gap: 0.5rem;
}

.betslip-tab {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
  border: none;
  color: var(--text-muted);
}

.betslip-tab.active {
  background: var(--accent-green);
  color: #fff;
}

.betslip-tab:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(148, 163, 184, 0.1);
}

.betslip-body {
  padding: 1rem 1.25rem;
}

.betslip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-light);
  animation: slideInRight 0.3s ease;
}

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

.betslip-item-info { flex: 1; }

.betslip-item-match {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.betslip-item-selection {
  font-size: 0.9rem;
  font-weight: 600;
}

.betslip-item-odd {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-green);
}

.betslip-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  border: none;
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.8rem;
}

.betslip-item-remove:hover {
  background: rgba(239, 68, 68, 0.3);
}

.betslip-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-light);
}

.betslip-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.betslip-total-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.betslip-total-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-green);
}

.betslip-stake {
  margin-bottom: 1rem;
}

.betslip-stake input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: border-color var(--transition-fast);
}

.betslip-stake input:focus {
  border-color: var(--accent-green);
}

.betslip-potential {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.betslip-potential-value {
  color: var(--accent-green);
  font-weight: 700;
}

/* Desktop Betslip */
@media (min-width: 992px) {
  .betslip-desktop {
    position: sticky;
    top: 80px;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .betslip-handle { display: none; }
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, rgba(148,163,184,0.1) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.scale-in {
  animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-premium .form-control,
.form-premium .form-select {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-premium .form-control:focus,
.form-premium .form-select:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
  background: var(--bg-card-hover);
}

.form-premium .form-control::placeholder {
  color: var(--text-muted);
}

.form-premium label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-check-input {
  background-color: var(--bg-card);
  border-color: var(--border-light);
}

.form-check-input:checked {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
}

/* ============================================
   DASHBOARD SIDEBAR
   ============================================ */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-light);
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1040;
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.sidebar-brand {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.sidebar-nav { list-style: none; padding: 0; }

.sidebar-nav-item { margin-bottom: 0.25rem; }

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-right: 1rem;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
  color: var(--accent-green);
  background: rgba(16,185,129,0.08);
}

.sidebar-nav-link.active {
  border-left: 3px solid var(--accent-green);
  margin-left: 0;
}

.sidebar-nav-icon {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.dashboard-main {
  flex: 1;
  margin-left: 260px;
  padding: 2rem;
  min-height: 100vh;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all var(--transition-normal);
}

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

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.stat-card-value {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-card-change {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.stat-card-change.positive { color: var(--accent-green); }
.stat-card-change.negative { color: var(--accent-red); }

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--accent-green);
  box-shadow: var(--shadow-accent);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-primary);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1rem 0;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
}

/* ============================================
   TABLE STYLES
   ============================================ */
.table-premium {
  color: var(--text-primary);
  border-collapse: separate;
  border-spacing: 0;
}

.table-premium thead th {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem;
  white-space: nowrap;
}

.table-premium tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  vertical-align: middle;
}

.table-premium tbody tr {
  transition: background var(--transition-fast);
}

.table-premium tbody tr:hover {
  background: rgba(16,185,129,0.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-premium {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--accent-green); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .dashboard-main {
    margin-left: 0;
    padding: 1rem;
  }
  .sidebar-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1035;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }
  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .betslip-desktop {
    display: none;
  }
}

@media (min-width: 992px) {
  .betslip-container { display: none; }
  .sidebar-toggle { display: none !important; }
}

@media (max-width: 575.98px) {
  .hero-stats { gap: 0.75rem; }
  .hero-stat-item { min-width: 90px; padding: 0.75rem 1rem; }
  .hero-stat-value { font-size: 1.25rem; }
  .odds-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .odd-btn { padding: 0.5rem 0.3rem; }
  .odd-value { font-size: 0.8rem; }
}

/* ============================================
   UTILITAIRES
   ============================================ */
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }

.bg-glass { background: var(--bg-glass); backdrop-filter: blur(12px); }

.text-accent { color: var(--accent-green) !important; }
.text-cyan { color: var(--accent-cyan) !important; }
.text-amber { color: var(--accent-amber) !important; }

.border-accent { border-color: var(--border-accent) !important; }

.py-section { padding: 3rem 0; }
.mt-section { margin-top: 3rem; }

.w-100 { width: 100% !important; }
.max-w-xs { max-width: 280px; }
.max-w-sm { max-width: 320px; }

.cursor-pointer { cursor: pointer; }

/* ============================================
   PAYMENT SPECIFIC
   ============================================ */
.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-method:hover,
.payment-method.selected {
  border-color: var(--accent-green);
  background: rgba(16,185,129,0.08);
}

.payment-method.selected {
  box-shadow: 0 0 12px rgba(16,185,129,0.2);
}

.payment-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ============================================
   PROFILE
   ============================================ */
.profile-avatar {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
}

/* ============================================
   TOAST / NOTIFICATION
   ============================================ */
.toast-container {
  position: fixed;
  top: 80px;
  right: 1rem;
  z-index: 9999;
}

.toast-premium {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 0.5rem;
  animation: slideInToast 0.3s ease;
}

@keyframes slideInToast {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

.toast-icon {
  font-size: 1.25rem;
}

.toast-success .toast-icon { color: var(--accent-green); }
.toast-error .toast-icon { color: var(--accent-red); }
.toast-info .toast-icon { color: var(--accent-blue); }

/* ============================================
   MODAL
   ============================================ */
.modal-premium .modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
}

.modal-premium .modal-header {
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
}

.modal-premium .modal-body { padding: 1.5rem; }

.modal-premium .modal-footer {
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
}

.modal-premium .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.empty-state-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   TABS CUSTOM
   ============================================ */
.tabs-premium {
  display: flex;
  gap: 0.25rem;
  background: var(--bg-secondary);
  padding: 0.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.tab-premium {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  flex: 1;
}

.tab-premium.active {
  background: var(--accent-green);
  color: #fff;
}

.tab-premium:hover:not(.active) {
  color: var(--text-primary);
}