/* ===================================
   CrownPlay France - Styles Premium
   Version: FR-1.0.0
   =================================== */

/* Variables Globales */
:root {
  --royal-gold: #d4a574;
  --royal-gold-dark: #b08d5a;
  --royal-gold-light: #e6b885;
  --royal-green: #00d4aa;
  --royal-green-light: #00e6bb;
  --royal-dark: #0a0908;
  --royal-panel: #1f1c1a;
  --royal-panel-hover: #2a2622;
  --royal-white: #ffffff;
  --royal-grey: #b8b8b8;
  --royal-muted: #6b6866;
  --royal-border: rgba(165,130,100,.15);
  --royal-shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --royal-shadow-md: 0 4px 16px rgba(0,0,0,.5);
  --royal-shadow-lg: 0 8px 32px rgba(0,0,0,.6);
  --royal-shadow-gold: 0 8px 32px rgba(212,165,116,.25);
  --royal-trans-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --royal-trans-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --royal-trans-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--royal-dark);
  color: var(--royal-white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  font-size: 16px;
}

/* Background Animé Subtil */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 45%, rgba(212,165,116,.02) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(0,212,170,.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Navigation Royale */
.royal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(10,9,8,.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--royal-border);
  z-index: 1000;
  transition: all var(--royal-trans-base);
}

.royal-nav.scrolled {
  height: 60px;
  background: rgba(10,9,8,.98);
  box-shadow: var(--royal-shadow-md);
}

.royal-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.royal-nav .royal-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.royal-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--royal-trans-fast);
}

.royal-logo:hover {
  transform: scale(1.05);
}

.royal-logo img {
  height: 38px;
  width: auto;
}

.royal-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.royal-link {
  color: var(--royal-grey);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--royal-trans-fast);
  position: relative;
}

.royal-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--royal-gold);
  transition: width var(--royal-trans-base);
}

.royal-link:hover {
  color: var(--royal-gold);
}

.royal-link:hover::after {
  width: 100%;
}

.royal-mobile-cta {
  display: none;
}

.royal-desktop-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Boutons Simplifiés */
.royal-btn-primary,
.royal-btn-secondary,
.royal-btn-accent,
.royal-btn-outline {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--royal-trans-fast);
  position: relative;
}

.royal-btn-primary {
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-dark));
  color: #000;
  font-weight: 700;
  box-shadow: var(--royal-shadow-gold);
}

.royal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(212,165,116,.3);
}

.royal-btn-secondary {
  background: transparent;
  color: var(--royal-white);
  border: 1px solid var(--royal-border);
}

.royal-btn-secondary:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--royal-gold);
  color: var(--royal-gold);
}

.royal-btn-accent {
  background: linear-gradient(135deg, var(--royal-green), #00c49a);
  color: var(--royal-white);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,212,170,.3);
}

.royal-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,170,.4);
}

.royal-btn-accent.large,
.royal-btn-primary.large {
  padding: 16px 36px;
  font-size: 16px;
}

.royal-btn-accent.mega {
  padding: 20px 48px;
  font-size: 18px;
  margin-top: 30px;
}

.royal-btn-outline {
  background: transparent;
  color: var(--royal-gold);
  border: 2px solid var(--royal-gold);
}

.royal-btn-outline:hover {
  background: var(--royal-gold);
  color: #000;
}

/* Menu Burger Mobile */
.royal-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.royal-burger span {
  width: 24px;
  height: 2px;
  background: var(--royal-white);
  transition: all var(--royal-trans-fast);
}

.royal-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.royal-burger.active span:nth-child(2) {
  opacity: 0;
}

.royal-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section Modernisée */
.royal-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.royal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.royal-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,9,8,.5) 50%, var(--royal-dark) 100%);
}

.royal-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.royal-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.royal-hero-text {
  max-width: 900px;
}

.royal-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212,165,116,.1);
  border: 1px solid var(--royal-gold);
  border-radius: 100px;
  color: var(--royal-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.royal-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--royal-white) 0%, var(--royal-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.royal-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 35px;
  text-align: left;
}

.royal-subtitle strong {
  color: var(--royal-gold);
  font-weight: 600;
}

.royal-hero-features {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
}

.feature-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--royal-gold);
}

.feature-text {
  font-size: 14px;
  color: var(--royal-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.royal-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.royal-hero-trust {
  font-size: 14px;
  color: var(--royal-muted);
  padding-top: 20px;
  border-top: 1px solid var(--royal-border);
}

/* Section Avantages */
.royal-advantages {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--royal-dark) 0%, rgba(31,28,26,.1) 100%);
}

.royal-section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.royal-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--royal-white);
}

.royal-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--royal-grey);
  max-width: 900px;
  margin: 0 auto;
}

.royal-lead strong {
  color: var(--royal-gold);
}

.advantages-content {
  margin-top: 50px;
}

.advantage-block {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(31,28,26,.2);
  border-radius: 12px;
  border-left: 4px solid var(--royal-gold);
}

.advantage-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-white);
}

.advantage-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--royal-grey);
  margin-bottom: 15px;
}

.advantage-text strong {
  color: var(--royal-gold);
  font-weight: 600;
}

/* Section Paiements Simplifiée */
.royal-payments {
  padding: 80px 0;
  background: rgba(31,28,26,.1);
}

.payment-intro-text {
  margin-bottom: 40px;
  text-align: center;
}

.payment-intro-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--royal-grey);
  max-width: 800px;
  margin: 0 auto;
}

.payment-intro-text strong {
  color: var(--royal-gold);
}

.payment-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.payment-method-card {
  background: var(--royal-panel);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--royal-border);
  transition: all var(--royal-trans-base);
}

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

.payment-method-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--royal-gold);
}

.payment-method-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--royal-grey);
}

.payment-security-text {
  padding: 40px;
  background: rgba(212,165,116,.05);
  border-radius: 12px;
  border: 1px solid rgba(212,165,116,.2);
}

.payment-security-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.payment-security-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 15px;
}

.payment-security-text strong {
  color: var(--royal-gold);
}

/* Section Jeux */
.royal-games {
  padding: 80px 0;
  background: var(--royal-dark);
}

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

.games-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--royal-grey);
  max-width: 800px;
  margin: 0 auto 40px;
}

.games-description strong {
  color: var(--royal-gold);
}

.games-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.game-showcase-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--royal-panel);
  transition: all var(--royal-trans-base);
  cursor: pointer;
  aspect-ratio: 4/5;
}

.game-showcase-card:hover {
  transform: scale(1.05);
  box-shadow: var(--royal-shadow-lg);
}

.game-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.9) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.game-info-overlay h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--royal-white);
}

.game-info-overlay p {
  font-size: 13px;
  color: var(--royal-grey);
  margin-bottom: 10px;
}

.game-badge-live,
.game-badge-hot,
.game-badge-new,
.game-badge-mega,
.game-badge-exclusive {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.game-badge-live {
  background: rgba(255,0,0,.8);
  color: white;
}

.game-badge-hot {
  background: linear-gradient(135deg, #ff6b35, #ff4444);
  color: white;
}

.game-badge-new {
  background: var(--royal-green);
  color: white;
}

.game-badge-mega {
  background: var(--royal-gold);
  color: #000;
}

.game-badge-exclusive {
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-green));
  color: white;
}

.game-play-btn {
  padding: 8px 20px;
  background: var(--royal-green);
  color: #000;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all var(--royal-trans-fast);
}

.game-play-btn:hover {
  background: var(--royal-green-light);
  transform: translateY(-2px);
}

.games-bottom-text {
  padding: 40px;
  background: rgba(31,28,26,.2);
  border-radius: 12px;
}

.games-bottom-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.games-bottom-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 15px;
}

.games-bottom-text strong {
  color: var(--royal-gold);
}

/* Programme VIP */
.royal-vip-program {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(31,28,26,.2) 0%, var(--royal-dark) 100%);
}

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

.vip-badge-intro {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-dark));
  color: #000;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.vip-intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--royal-grey);
  max-width: 900px;
  margin: 0 auto;
}

.vip-intro-text strong {
  color: var(--royal-gold);
}

.vip-levels-detailed {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

.vip-level-card {
  background: var(--royal-panel);
  border-radius: 12px;
  padding: 35px;
  border: 1px solid var(--royal-border);
  position: relative;
  overflow: hidden;
}

.vip-level-card.bronze {
  border-color: #cd7f32;
  background: linear-gradient(135deg, rgba(205,127,50,.05) 0%, var(--royal-panel) 100%);
}

.vip-level-card.silver {
  border-color: #c0c0c0;
  background: linear-gradient(135deg, rgba(192,192,192,.05) 0%, var(--royal-panel) 100%);
}

.vip-level-card.gold {
  border-color: var(--royal-gold);
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, var(--royal-panel) 100%);
}

.level-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.level-icon {
  font-size: 36px;
}

.level-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--royal-white);
  flex: 1;
}

.level-requirement {
  font-size: 13px;
  color: var(--royal-gold);
  font-weight: 600;
  text-transform: uppercase;
}

.level-benefits h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--royal-gold);
}

.level-benefits ul {
  list-style: none;
  margin-bottom: 20px;
}

.level-benefits li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 8px;
}

.level-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--royal-grey);
  padding-top: 20px;
  border-top: 1px solid var(--royal-border);
}

.level-description strong {
  color: var(--royal-gold);
}

.vip-additional-info {
  padding: 40px;
  background: rgba(212,165,116,.05);
  border-radius: 12px;
  border: 1px solid rgba(212,165,116,.2);
}

.vip-additional-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.vip-additional-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 15px;
}

.vip-additional-info strong {
  color: var(--royal-gold);
}

/* Section Promotions */
.royal-promotions {
  padding: 80px 0;
  background: rgba(31,28,26,.1);
}

.promo-main-offer {
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, rgba(0,212,170,.08) 100%);
  border: 2px solid var(--royal-gold);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.promo-highlight-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,212,170,.2);
  border: 1px solid var(--royal-green);
  border-radius: 100px;
  color: var(--royal-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.promo-main-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--royal-white);
}

.promo-amount {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.promo-details {
  font-size: 20px;
  color: var(--royal-grey);
  margin-bottom: 30px;
}

.promo-breakdown-detailed {
  background: rgba(0,0,0,.3);
  border-radius: 10px;
  padding: 25px;
  margin: 30px auto;
  max-width: 600px;
}

.promo-breakdown-detailed h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.deposit-breakdown {
  text-align: left;
}

.deposit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.deposit-item:last-child {
  border-bottom: none;
}

.deposit-number {
  font-weight: 600;
  color: var(--royal-gold);
}

.deposit-bonus {
  font-weight: 600;
  color: var(--royal-white);
  text-align: right;
}

.promo-terms {
  font-size: 12px;
  color: var(--royal-muted);
  margin-top: 20px;
  line-height: 1.5;
}

.promo-terms strong {
  color: var(--royal-gold);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.promo-item-card {
  background: var(--royal-panel);
  border: 1px solid var(--royal-border);
  border-radius: 12px;
  padding: 30px;
  transition: all var(--royal-trans-base);
}

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

.promo-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.promo-item-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--royal-white);
}

.promo-item-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--royal-grey);
  margin-bottom: 20px;
}

.promo-item-card strong {
  color: var(--royal-gold);
}

.promo-link {
  color: var(--royal-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--royal-trans-fast);
}

.promo-link:hover {
  color: var(--royal-green);
}

/* Casino Live */
.royal-live-casino {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(31,28,26,.3) 0%, var(--royal-dark) 100%);
}

.live-intro-content {
  text-align: center;
  margin-bottom: 50px;
}

.live-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--royal-grey);
  max-width: 900px;
  margin: 0 auto;
}

.live-description strong {
  color: var(--royal-gold);
}

.live-stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
  padding: 30px;
  background: rgba(31,28,26,.3);
  border-radius: 12px;
  flex-wrap: wrap;
}

.live-stat {
  text-align: center;
}

.stat-live-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--royal-gold);
  display: block;
}

.stat-live-label {
  font-size: 14px;
  color: var(--royal-muted);
  text-transform: uppercase;
}

.live-games-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.live-game-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--royal-panel);
}

.live-game-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.live-overlay {
  padding: 20px;
}

.live-indicator {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,0,0,.8);
  color: white;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.live-overlay h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--royal-white);
}

.live-overlay p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--royal-grey);
  margin-bottom: 20px;
}

.live-overlay strong {
  color: var(--royal-gold);
}

.live-join-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--royal-green);
  color: #000;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--royal-trans-fast);
}

.live-join-btn:hover {
  background: var(--royal-green-light);
  transform: translateY(-2px);
}

.live-additional-info {
  padding: 40px;
  background: rgba(31,28,26,.2);
  border-radius: 12px;
}

.live-additional-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.live-additional-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 15px;
}

.live-additional-info strong {
  color: var(--royal-gold);
}

/* Sports Section */
.royal-sports {
  padding: 80px 0;
  background: var(--royal-dark);
}

.sports-content-rich {
  max-width: 900px;
  margin: 0 auto;
}

.sports-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 40px;
}

.sports-intro strong {
  color: var(--royal-gold);
}

.sports-features-text,
.sports-esports,
.sports-betting-tools {
  margin-bottom: 40px;
}

.sports-features-text h3,
.sports-esports h3,
.sports-betting-tools h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.sports-features-text p,
.sports-esports p,
.sports-betting-tools p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 15px;
}

.sports-features-text strong,
.sports-esports strong,
.sports-betting-tools strong {
  color: var(--royal-gold);
}

/* Mobile Section */
.royal-mobile {
  padding: 80px 0;
  background: rgba(31,28,26,.1);
}

.mobile-content {
  max-width: 900px;
  margin: 0 auto;
}

.mobile-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 30px;
}

.mobile-content strong {
  color: var(--royal-gold);
}

.mobile-features h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.mobile-stats {
  padding: 25px;
  background: rgba(212,165,116,.05);
  border-radius: 10px;
  border: 1px solid rgba(212,165,116,.2);
}

/* Support Section */
.royal-support {
  padding: 80px 0;
  background: var(--royal-dark);
}

.support-intro {
  margin-bottom: 40px;
}

.support-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--royal-grey);
}

.support-intro strong {
  color: var(--royal-gold);
}

.support-channels h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--royal-gold);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.channel-item {
  background: var(--royal-panel);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--royal-border);
  transition: all var(--royal-trans-base);
}

.channel-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--royal-shadow-md);
  border-color: var(--royal-gold);
}

.channel-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--royal-white);
}

.channel-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--royal-grey);
}

.channel-item strong {
  color: var(--royal-gold);
}

.support-quality h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.support-quality p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--royal-grey);
}

.support-quality strong {
  color: var(--royal-gold);
}

/* Jeu Responsable */
.royal-responsible {
  padding: 80px 0;
  background: rgba(31,28,26,.1);
}

.responsible-content {
  max-width: 900px;
  margin: 0 auto;
}

.responsible-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 40px;
}

.responsible-intro strong {
  color: var(--royal-gold);
}

.responsible-tools h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--royal-gold);
}

.tools-list {
  list-style: none;
  margin-bottom: 40px;
}

.tools-list li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--royal-grey);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.tools-list li strong {
  color: var(--royal-gold);
}

.tools-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--royal-green);
  font-weight: bold;
}

.responsible-support h3,
.responsible-commitment h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--royal-gold);
}

.responsible-support p,
.responsible-commitment p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 15px;
}

.responsible-support strong,
.responsible-commitment strong {
  color: var(--royal-gold);
}

/* Section SEO Enrichie */
.royal-seo-content {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(31,28,26,.1) 0%, var(--royal-dark) 100%);
}

.seo-article {
  max-width: 1000px;
  margin: 0 auto;
}

.seo-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--royal-white);
  text-align: center;
}

.seo-section {
  margin-bottom: 50px;
}

.seo-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--royal-gold);
}

.seo-section p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--royal-grey);
  margin-bottom: 20px;
}

.seo-section strong {
  color: var(--royal-gold);
  font-weight: 600;
}

.seo-cta-section {
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, rgba(0,212,170,.08) 100%);
  border: 2px solid var(--royal-gold);
  border-radius: 20px;
  margin-top: 60px;
}

.seo-cta-section h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--royal-white);
}

.seo-cta-section p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--royal-grey);
  margin-bottom: 30px;
}

.seo-cta-section strong {
  color: var(--royal-gold);
}

/* Quiz Feature (Fiche Spéciale) */
.royal-quiz-feature {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(147,51,234,.05) 0%, rgba(31,28,26,.1) 100%);
  border-top: 2px solid var(--royal-gold);
  border-bottom: 2px solid var(--royal-gold);
}

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

.quiz-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  color: white;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.quiz-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--royal-grey);
  max-width: 700px;
  margin: 0 auto;
}

.quiz-intro strong {
  color: var(--royal-gold);
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 40px;
  background: var(--royal-panel);
  border-radius: 15px;
  box-shadow: var(--royal-shadow-lg);
}

.quiz-question h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--royal-white);
  text-align: center;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.quiz-option {
  padding: 20px;
  background: rgba(212,165,116,.1);
  border: 2px solid var(--royal-border);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--royal-white);
  cursor: pointer;
  transition: all var(--royal-trans-fast);
}

.quiz-option:hover {
  background: rgba(212,165,116,.2);
  border-color: var(--royal-gold);
  transform: translateY(-3px);
}

.quiz-option.selected {
  background: var(--royal-gold);
  color: #000;
  border-color: var(--royal-gold);
}

.quiz-result {
  display: none;
  padding: 30px;
  background: rgba(0,212,170,.1);
  border-radius: 10px;
  text-align: center;
}

.quiz-result p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--royal-white);
  margin-bottom: 20px;
}

.quiz-result strong {
  color: var(--royal-gold);
}

.fortune-wheel {
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, var(--royal-panel) 100%);
  border-radius: 20px;
  border: 2px solid var(--royal-gold);
  position: relative;
  overflow: hidden;
}

.fortune-wheel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,.05) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fortune-wheel h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--royal-white);
  position: relative;
}

.fortune-wheel p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--royal-grey);
  margin-bottom: 30px;
  position: relative;
}

.fortune-wheel strong {
  color: var(--royal-gold);
}

.wheel-prizes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  position: relative;
}

.prize-item {
  padding: 10px 20px;
  background: var(--royal-panel);
  border: 1px solid var(--royal-gold);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--royal-gold);
}

.spinning {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Footer Simplifié */
.royal-footer {
  background: var(--royal-panel);
  border-top: 1px solid var(--royal-border);
  padding: 60px 0 30px;
  margin-top: 100px;
}

.footer-main {
  margin-bottom: 40px;
}

.footer-brand {
  margin-bottom: 40px;
  text-align: center;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--royal-grey);
  max-width: 500px;
  margin: 0 auto;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: var(--royal-gold);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--royal-grey);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--royal-trans-fast);
}

.footer-column a:hover {
  color: var(--royal-gold);
}

.footer-bottom {
  border-top: 1px solid var(--royal-border);
  padding-top: 30px;
  text-align: center;
}

.footer-legal {
  font-size: 13px;
  color: var(--royal-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-item {
  padding: 6px 16px;
  background: var(--royal-dark);
  border: 1px solid var(--royal-border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--royal-gold);
  text-transform: uppercase;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  /* Navigation Mobile */
  .royal-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--royal-dark);
    flex-direction: column;
    padding: 30px;
    transition: left var(--royal-trans-base);
    z-index: 999;
  }

  .royal-menu.active {
    left: 0;
  }

  .royal-burger {
    display: flex;
  }

  .royal-desktop-cta {
    display: none;
  }

  .royal-mobile-cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--royal-border);
  }

  .royal-mobile-cta .royal-btn-primary,
  .royal-mobile-cta .royal-btn-secondary {
    width: 100%;
  }

  /* Hero Mobile */
  .royal-hero {
    padding: 100px 0 60px;
  }

  .royal-title {
    font-size: 32px;
  }

  .royal-subtitle {
    font-size: 16px;
  }

  .royal-hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-number {
    font-size: 22px;
  }

  .royal-cta-group {
    flex-direction: column;
  }

  .royal-cta-group a {
    width: 100%;
  }

  /* Sections Mobile */
  .royal-advantages,
  .royal-payments,
  .royal-games,
  .royal-vip-program,
  .royal-promotions,
  .royal-live-casino,
  .royal-sports,
  .royal-mobile,
  .royal-support,
  .royal-responsible,
  .royal-seo-content,
  .royal-quiz-feature {
    padding: 60px 0;
  }

  .royal-heading {
    font-size: 28px;
  }

  .advantage-block {
    padding: 20px;
  }

  .payment-grid-simple {
    grid-template-columns: 1fr;
  }

  .games-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

  .promo-main-offer {
    padding: 30px 20px;
  }

  .promo-amount {
    font-size: 32px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .live-stats-bar {
    gap: 30px;
  }

  .stat-live-number {
    font-size: 28px;
  }

  .live-games-showcase {
    grid-template-columns: 1fr;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .seo-title {
    font-size: 32px;
  }

  .fortune-wheel {
    padding: 30px 20px;
  }

  .fortune-wheel h3 {
    font-size: 24px;
  }

  .wheel-prizes {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Tablette */
@media (min-width: 769px) and (max-width: 1024px) {
  .games-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .payment-grid-simple {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Print Styles */
@media print {
  .royal-nav,
  .royal-quiz-feature,
  .royal-cta-group,
  .royal-btn-primary,
  .royal-btn-secondary,
  .royal-btn-accent {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--royal-gold);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Animations supplémentaires pour la roue */
.fortune-wheel .royal-btn-primary.spinning:hover {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}