/* ==========================================================================
   MAD CASINO — CSS Principal
   Style: Dark Western Premium Casino
   ========================================================================== */

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

:root {
  --red:        #e01840;
  --red-dark:   #b80f2e;
  --red-light:  #ff2d55;
  --gold:       #f0b429;
  --gold-dark:  #c98a00;
  --gold-light: #ffd166;
  --green:      #1db954;
  --green-dark: #158a3c;
  --purple:     #7c3aed;
  --bg-dark:    #0d0d0f;
  --bg-card:    #16161e;
  --bg-card2:   #1e1e2a;
  --bg-section: #111118;
  --border:     rgba(255,255,255,0.07);
  --text:       #e8e8ef;
  --text-muted: #8888a0;
  --text-light: #ffffff;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.7);
  --font-main:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --transition: 0.25s ease;
  --container:  1200px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--red-light); }

ul { list-style: none; }

/* --------------------------------------------------------------------------
   2. CONTAINER & LAYOUT
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--bg-section);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-light);
}

h1 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

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

.section-header h1,
.section-header h2 {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224,24,64,0.12);
  border: 1px solid rgba(224,24,64,0.3);
  color: var(--red-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--font-main);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(224,24,64,0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(224,24,64,0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #111;
  box-shadow: 0 4px 20px rgba(240,180,41,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(240,180,41,0.55);
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(29,185,84,0.35);
}

.btn-green:hover {
  background: linear-gradient(135deg, #25d668 0%, var(--green) 100%);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-light);
  background: rgba(224,24,64,0.08);
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--red);
  color: var(--red-light);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  background: rgba(224,24,64,0.06);
}

.btn-outline-small:hover {
  background: var(--red);
  color: #fff;
}

.btn-xl {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.header-logo img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

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

.header-nav ul li a {
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all var(--transition);
}

.header-nav ul li a:hover {
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn {
  padding: 8px 20px;
  font-size: 0.82rem;
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. HERO SLIDER
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 520px;
}

@media (max-width: 768px) {
  .hero-slider { height: 420px; }
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-bg-bonus {
  background-image: url('../images/slide-bonus.jpg');
  background-size: cover;
  background-position: center top;
}

.slide-bg-cashback {
  background-image: url('../images/slide-cashback.jpg');
  background-size: cover;
  background-position: center;
}

.slide-bg-tournois {
  background-image: url('../images/slide-tournois.jpg');
  background-size: cover;
  background-position: center;
}

.slide-bg-sports {
  background-image: url('../images/slide-sports.jpg');
  background-size: cover;
  background-position: center center;
}

.slide-bg-weekly {
  background-image: url('../images/slide-weekly.jpg');
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,15,0.92) 0%, rgba(13,13,15,0.55) 60%, rgba(13,13,15,0.2) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 40px 20px;
}

.slide-badges {
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-fire {
  background: rgba(224,24,64,0.15);
  border: 1px solid rgba(224,24,64,0.4);
  color: #ff6b8a;
}

.badge-gold {
  background: rgba(240,180,41,0.15);
  border: 1px solid rgba(240,180,41,0.4);
  color: var(--gold-light);
}

.badge-purple {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4);
  color: #a78bfa;
}

.badge-green {
  background: rgba(29,185,84,0.15);
  border: 1px solid rgba(29,185,84,0.4);
  color: #4ade80;
}

.slide-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.slide-title strong {
  color: var(--red-light);
}

.slide-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-weight: 500;
}

.slide-payments {
  display: flex;
  gap: 14px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.slide-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--red-light);
  width: 24px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   7. STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar {
  background: linear-gradient(90deg, var(--red-dark) 0%, #8b0000 50%, var(--red-dark) 100%);
  padding: 14px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-main);
  font-size: 0.82rem;
  white-space: nowrap;
}

.stat-item i {
  color: var(--gold-light);
  font-size: 1rem;
}

.stat-item strong { color: #fff; }

/* --------------------------------------------------------------------------
   8. SECTION — PRÉSENTATION
   -------------------------------------------------------------------------- */
.section-presentation {
  background: linear-gradient(180deg, #111118 0%, #0d0d0f 100%);
}

.presentation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.pres-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
}

.pres-card:hover {
  border-color: rgba(224,24,64,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.pres-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(224,24,64,0.15), rgba(224,24,64,0.05));
  border: 1px solid rgba(224,24,64,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--red-light);
}

.pres-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.pres-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. TABLES
   -------------------------------------------------------------------------- */
.table-wrapper {
  margin-top: 48px;
}

.table-title {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--text-light);
  font-family: var(--font-main);
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 520px;
}

.info-table thead tr {
  background: rgba(224,24,64,0.12);
  border-bottom: 1px solid rgba(224,24,64,0.2);
}

.info-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-light);
  white-space: nowrap;
}

.info-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.info-table tbody tr:last-child { border-bottom: none; }

.info-table tbody tr:hover {
  background: rgba(255,255,255,0.025);
}

.info-table tbody td {
  padding: 13px 18px;
  color: var(--text);
}

.info-table tbody td:first-child {
  color: var(--text-light);
  font-weight: 600;
}

.highlight-row td:first-child { color: var(--gold-light) !important; }

.highlight-cell {
  color: var(--red-light) !important;
  font-weight: 700 !important;
}

.text-green { color: var(--green) !important; }
.text-red   { color: var(--red-light) !important; }

/* --------------------------------------------------------------------------
   10. SCREENSHOTS & BANNERS
   -------------------------------------------------------------------------- */
.screenshot-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

.screenshot-mt {
  margin-top: 2rem;
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 0 auto 40px;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   11. JEUX SECTION
   -------------------------------------------------------------------------- */
.games-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.game-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.game-cat-card:hover {
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.game-cat-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  color: var(--gold);
}

.game-cat-card h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.game-cat-card ul {
  margin-bottom: 20px;
}

.game-cat-card ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 6px;
}

.game-cat-card ul li::before {
  content: '▸';
  color: var(--red-light);
  font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   12. LIVE CASINO SECTION
   -------------------------------------------------------------------------- */
.section-live {
  background: linear-gradient(180deg, #0d0d0f 0%, #111118 100%);
}

.live-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.live-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.live-feature:hover {
  border-color: rgba(224,24,64,0.25);
  transform: translateY(-4px);
}

.live-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(224,24,64,0.15), rgba(224,24,64,0.05));
  border: 1px solid rgba(224,24,64,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--red-light);
}

.live-feature h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.live-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. BONUS SECTION
   -------------------------------------------------------------------------- */
.bonus-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin: 48px 0;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
}

.bonus-card-main::before {
  background: linear-gradient(90deg, var(--red) 0%, #ff6b00 100%);
  height: 4px;
}

.bonus-card-main {
  border-color: rgba(224,24,64,0.2);
  box-shadow: 0 0 40px rgba(224,24,64,0.08);
}

.bonus-badge {
  display: inline-block;
  background: rgba(224,24,64,0.12);
  border: 1px solid rgba(224,24,64,0.25);
  color: var(--red-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: var(--font-main);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bonus-badge-gold {
  background: rgba(240,180,41,0.12);
  border-color: rgba(240,180,41,0.25);
  color: var(--gold-light);
}

.bonus-badge-purple {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.25);
  color: #a78bfa;
}

.bonus-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.bonus-amount {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
  margin: 12px 0;
}

.bonus-card-main .bonus-amount { font-size: 4rem; }

.bonus-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.bonus-features {
  margin-bottom: 20px;
}

.bonus-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  padding: 5px 0;
}

.bonus-features li i {
  color: var(--green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   14. SPORTS SECTION
   -------------------------------------------------------------------------- */
.section-sports {
  background: linear-gradient(180deg, #111118 0%, #0a140a 60%, #0d0d0f 100%);
}

.sports-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 48px 0;
}

.sports-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,185,84,0.12);
  border: 1px solid rgba(29,185,84,0.3);
  color: #4ade80;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.sports-highlight-content h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.sports-highlight-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.sports-list {
  margin: 20px 0 28px;
}

.sports-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
}

.sports-list li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}

.sport-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sport-icon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.sport-icon:hover {
  border-color: rgba(29,185,84,0.3);
  background: rgba(29,185,84,0.06);
  transform: translateY(-3px);
}

.sport-icon i {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

.sport-icon span {
  font-size: 0.78rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   15. TOURNOIS SECTION
   -------------------------------------------------------------------------- */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.tournament-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tournament-active {
  border-color: rgba(224,24,64,0.3);
  box-shadow: 0 0 30px rgba(224,24,64,0.08);
}

.tournament-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tournament-status {
  font-size: 0.78rem;
  font-family: var(--font-main);
  font-weight: 600;
}

.tournament-prize {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
}

.tournament-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.tournament-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.tournament-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.t-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.t-info-item i {
  color: var(--gold);
  width: 14px;
}

/* --------------------------------------------------------------------------
   16. CÉLÉBRITÉS SECTION
   -------------------------------------------------------------------------- */
.section-celebs {
  background: linear-gradient(180deg, #0d0d0f 0%, #12101a 100%);
}

.celebs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.celeb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: all var(--transition);
  text-align: center;
}

.celeb-card:hover {
  border-color: rgba(240,180,41,0.2);
  transform: translateY(-4px);
}

.celeb-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(240,180,41,0.15), rgba(240,180,41,0.05));
  border: 2px solid rgba(240,180,41,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--gold);
}

.celeb-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.celeb-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.celeb-quote {
  font-size: 0.85rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  border-left: 2px solid var(--red);
  padding-left: 12px;
  margin-bottom: 14px;
  text-align: left;
}

.celeb-game {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.celeb-game i { color: var(--gold); }

/* --------------------------------------------------------------------------
   17. VIP SECTION
   -------------------------------------------------------------------------- */
.section-vip {
  background: radial-gradient(ellipse at 50% 0%, #1a0a05 0%, var(--bg-section) 60%);
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.vip-level {
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vip-level::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.vip-level:hover { transform: translateY(-5px); }

.vip-bronze  { background: linear-gradient(180deg, rgba(205,127,50,0.08) 0%, var(--bg-card) 100%); }
.vip-bronze::before  { background: linear-gradient(90deg, #cd7f32, #8b5e2d); }
.vip-silver  { background: linear-gradient(180deg, rgba(192,192,192,0.08) 0%, var(--bg-card) 100%); }
.vip-silver::before  { background: linear-gradient(90deg, #c0c0c0, #808080); }
.vip-gold    { background: linear-gradient(180deg, rgba(240,180,41,0.1) 0%, var(--bg-card) 100%); border-color: rgba(240,180,41,0.2); }
.vip-gold::before    { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.vip-platinum { background: linear-gradient(180deg, rgba(224,24,64,0.1) 0%, var(--bg-card) 100%); border-color: rgba(224,24,64,0.2); }
.vip-platinum::before { background: linear-gradient(90deg, var(--red-light), var(--red)); }
.vip-diamond { background: linear-gradient(180deg, rgba(124,58,237,0.1) 0%, var(--bg-card) 100%); border-color: rgba(124,58,237,0.25); }
.vip-diamond::before { background: linear-gradient(90deg, #a78bfa, var(--purple)); }

.vip-crown {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.vip-bronze .vip-crown  { color: #cd7f32; }
.vip-silver .vip-crown  { color: #c0c0c0; }
.vip-gold .vip-crown    { color: var(--gold); }
.vip-platinum .vip-crown { color: var(--red-light); }
.vip-diamond .vip-crown  { color: #a78bfa; }

.vip-level h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.vip-level > p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.vip-level ul {
  text-align: left;
}

.vip-level ul li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.vip-level ul li::before {
  content: '✓';
  color: var(--green);
  font-size: 0.7rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   18. SÉCURITÉ / PAIEMENTS SECTION
   -------------------------------------------------------------------------- */
.section-securite {
  background: linear-gradient(180deg, #0d0d0f 0%, #111118 100%);
}

.payment-methods {
  margin: 40px 0 48px;
}

.payment-methods h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  min-width: 80px;
  transition: all var(--transition);
}

.payment-item:hover {
  border-color: rgba(224,24,64,0.3);
  transform: translateY(-2px);
}

.payment-item i {
  font-size: 1.6rem;
  color: var(--text-muted);
}

.payment-item span {
  font-size: 0.72rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.security-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: all var(--transition);
}

.security-item:hover {
  border-color: rgba(29,185,84,0.2);
  transform: translateY(-3px);
}

.security-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(29,185,84,0.12), rgba(29,185,84,0.04));
  border: 1px solid rgba(29,185,84,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--green);
}

.security-item h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.security-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   19. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 840px;
  margin: 0 auto 48px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(224,24,64,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--bg-card);
  border: none;
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(255,255,255,0.04);
}

.faq-icon {
  color: var(--red-light);
  font-size: 0.85rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg-card2);
}

.faq-answer.open {
  max-height: 400px;
  padding: 20px 24px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   20. CTA SECTION
   -------------------------------------------------------------------------- */
.section-cta {
  background: linear-gradient(135deg, #1a0008 0%, #0d0d0f 40%, #0a1a10 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(224,24,64,0.15);
  border-bottom: 1px solid rgba(224,24,64,0.15);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-logo {
  flex-shrink: 0;
}

.cta-logo img {
  width: 260px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  border: none;
  filter: drop-shadow(0 0 24px rgba(224,24,64,0.25));
}

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #080809;
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-payments {
  display: flex;
  gap: 14px;
  font-size: 1.4rem;
  color: var(--text-muted);
}

.footer-nav-group h4 {
  font-family: var(--font-main);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 16px;
}

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

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

.footer-nav-group ul li a:hover {
  color: var(--red-light);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 680px;
}

.footer-disclaimer a {
  color: var(--red-light);
  text-decoration: underline;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.age-badge {
  background: var(--red);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 6px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   22. MOBILE MENU
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13,13,15,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .header-nav ul li a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .header-actions {
    display: none;
  }

  .burger-btn {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .presentation-grid { grid-template-columns: repeat(2, 1fr); }
  .live-features      { grid-template-columns: repeat(2, 1fr); }
  .celebs-grid        { grid-template-columns: repeat(2, 1fr); }
  .vip-levels         { grid-template-columns: repeat(3, 1fr); }
  .security-features  { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner   { grid-template-columns: 1fr 1fr; }
  .bonus-grid         { grid-template-columns: 1fr; }
  .bonus-card-main .bonus-amount { font-size: 3rem; }
  .games-categories   { grid-template-columns: 1fr 1fr; }
  .tournaments-grid   { grid-template-columns: 1fr 1fr; }
  .sports-highlight   { grid-template-columns: 1fr; }
}

/* Mobile Large */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .hero-slider { height: 380px; }

  .slide-content { padding: 24px 16px; }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stats-inner .stat-item:last-child { grid-column: 1/-1; text-align: center; justify-content: center; }

  .presentation-grid  { grid-template-columns: 1fr; gap: 14px; }
  .live-features      { grid-template-columns: 1fr; }
  .celebs-grid        { grid-template-columns: 1fr; }
  .vip-levels         { grid-template-columns: repeat(2, 1fr); }
  .security-features  { grid-template-columns: 1fr; }
  .games-categories   { grid-template-columns: 1fr; }
  .tournaments-grid   { grid-template-columns: 1fr; }
  .footer-top-inner   { grid-template-columns: 1fr; gap: 28px; }

  .cta-inner  { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .cta-logo { display: none; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .slider-btn { display: none; }

  .sport-icon-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile Small */
@media (max-width: 480px) {
  .hero-slider { height: 320px; }
  .slide-title { font-size: 1.5rem; }

  .vip-levels { grid-template-columns: 1fr 1fr; }

  .header-logo img { height: 36px; }

  .btn-xl { padding: 13px 24px; font-size: 0.9rem; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 8px; }

  .payment-grid { gap: 8px; }
  .payment-item { padding: 10px 14px; min-width: 68px; }

  .footer-top { padding: 40px 0 28px; }
}

/* --------------------------------------------------------------------------
   24. UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Active Nav Link */
.header-nav ul li a.active-link {
  color: var(--red-light);
  background: rgba(224,24,64,0.1);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(224,24,64,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* Selection */
::selection { background: rgba(224,24,64,0.35); color: #fff; }
