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

/* Variables de Couleurs */
: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-gray: #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é */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(212,165,116,.04) 0%, transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(0,212,170,.04) 0%, transparent 45%),
    radial-gradient(circle at 50% 30%, rgba(212,165,116,.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: royalFloat 30s ease-in-out infinite;
}

@keyframes royalFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-20px, -20px); }
  66% { transform: translate(20px, -10px); }
}

/* Navigation Simplifiée */
.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-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.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-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--royal-gold);
  letter-spacing: -0.5px;
}

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

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

.royal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  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-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

/* Boutons */
.royal-btn-main,
.royal-btn-secondary {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--royal-trans-fast);
  position: relative;
}

.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-main {
  background: linear-gradient(135deg, var(--royal-gold), var(--royal-gold-dark));
  color: #000;
  font-weight: 700;
  box-shadow: var(--royal-shadow-gold);
}

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

.royal-btn-xl {
  padding: 14px 36px;
  font-size: 15px;
}

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

.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 */
.royal-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.royal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--royal-dark) 0%, #1a1614 100%);
}

.royal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212,165,116,.1) 0%, transparent 40%),
    linear-gradient(180deg, transparent 0%, rgba(10,9,8,.7) 70%, var(--royal-dark) 100%);
}

.royal-hero-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.royal-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,165,116,.12);
  border: 1px solid var(--royal-gold);
  border-radius: 50px;
  color: var(--royal-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  animation: royalFadeIn 0.6s ease;
}

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

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

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

.royal-hero-description {
  max-width: 800px;
  margin: 0 auto 32px;
  animation: royalSlideUp 1s ease;
}

.royal-hero-description p {
  font-size: 17px;
  color: var(--royal-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.royal-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: royalSlideUp 1.2s ease;
  margin-bottom: 48px;
}

.royal-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  padding: 28px;
  background: rgba(31,28,26,.4);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  animation: royalSlideUp 1.4s ease;
}

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

.royal-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--royal-gold);
  margin-bottom: 6px;
}

.royal-stat-text {
  font-size: 13px;
  color: var(--royal-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Container */
.royal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Headers */
.royal-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.royal-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(0,212,170,.1);
  border: 1px solid var(--royal-green);
  border-radius: 50px;
  color: var(--royal-green);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.royal-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--royal-white);
}

.royal-section-subtitle {
  font-size: 16px;
  color: var(--royal-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Introduction Section */
.royal-intro-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--royal-dark) 0%, rgba(31,28,26,.3) 100%);
}

.royal-text-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: var(--royal-gray);
}

.royal-text-content p {
  margin-bottom: 20px;
}

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

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

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

.royal-promo-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,.08) 0%, transparent 60%);
  animation: royalRotate 25s linear infinite;
}

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

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

.royal-promo-amount {
  font-size: clamp(32px, 5vw, 44px);
  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: 12px;
}

.royal-promo-subtitle {
  font-size: 18px;
  color: var(--royal-gray);
  margin-bottom: 28px;
}

.royal-promo-details {
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.royal-promo-details p {
  font-size: 16px;
  color: var(--royal-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.royal-deposit-breakdown {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(0,0,0,.3);
  border-radius: 10px;
  margin-bottom: 24px;
}

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

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

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

.royal-deposit-value {
  font-weight: 700;
  color: var(--royal-white);
}

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

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

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

.royal-promo-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.royal-promo-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--royal-white);
}

.royal-promo-card p {
  font-size: 14px;
  color: var(--royal-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.royal-promo-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--royal-gold);
}

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

.royal-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.royal-feature {
  background: var(--royal-panel);
  border: 1px solid var(--royal-border);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--royal-trans-base);
}

.royal-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--royal-shadow-lg);
  border-color: rgba(212,165,116,.3);
}

.royal-feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

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

.royal-feature-text {
  font-size: 15px;
  color: var(--royal-gray);
  line-height: 1.8;
}

.royal-feature-text p {
  margin-bottom: 12px;
}

.royal-feature-text p:last-child {
  margin-bottom: 0;
}

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

.royal-game-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.royal-tab {
  padding: 10px 20px;
  background: transparent;
  color: var(--royal-gray);
  border: 1px solid var(--royal-border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--royal-trans-fast);
}

.royal-tab.active {
  background: var(--royal-gold);
  color: #000;
  border-color: var(--royal-gold);
}

.royal-tab:hover:not(.active) {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
}

.royal-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

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

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

.royal-game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: rgba(0,0,0,.8);
  color: var(--royal-white);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.royal-game-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.royal-game-info {
  padding: 16px;
}

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

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

.royal-play-btn {
  display: inline-block;
  padding: 8px 18px;
  background: var(--royal-green);
  color: #000;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--royal-trans-fast);
}

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

.royal-cta-center {
  text-align: center;
}

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

.royal-live-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

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

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

.royal-live-stats {
  display: grid;
  gap: 24px;
}

.royal-live-stat {
  text-align: center;
  padding: 20px;
  background: var(--royal-panel);
  border-radius: 8px;
  border: 1px solid var(--royal-border);
}

.royal-stat-big {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--royal-gold);
  margin-bottom: 8px;
}

.royal-stat-label {
  font-size: 13px;
  color: var(--royal-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

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

.royal-sports-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

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

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

.royal-sport-item {
  text-align: center;
  padding: 28px;
  background: var(--royal-panel);
  border-radius: 10px;
  transition: all var(--royal-trans-base);
}

.royal-sport-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--royal-shadow-md);
}

.royal-sport-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.royal-sport-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--royal-white);
}

.royal-sport-item p {
  color: var(--royal-gray);
  font-size: 13px;
}

.royal-sports-promo {
  background: linear-gradient(135deg, rgba(0,212,170,.1) 0%, rgba(212,165,116,.1) 100%);
  border: 2px solid var(--royal-green);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.royal-sports-promo h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--royal-green), var(--royal-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.royal-sports-promo p {
  font-size: 16px;
  color: var(--royal-gray);
  margin-bottom: 24px;
}

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

.royal-article {
  max-width: 950px;
  margin: 0 auto;
}

.royal-article h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--royal-white);
}

.royal-article h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--royal-gold);
}

.royal-article p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--royal-gray);
  margin-bottom: 20px;
}

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

.royal-final-cta {
  background: linear-gradient(135deg, rgba(212,165,116,.1) 0%, rgba(0,212,170,.1) 100%);
  border: 2px solid var(--royal-gold);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.royal-final-cta h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--royal-white);
}

.royal-final-cta p {
  font-size: 17px;
  color: var(--royal-gray);
  margin-bottom: 28px;
}

/* Calculator Section */
.royal-calculator {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(212,165,116,.05) 0%, rgba(0,212,170,.05) 100%);
}

.royal-calc-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.royal-calc-intro {
  text-align: center;
  margin-bottom: 32px;
}

.royal-calc-intro p {
  font-size: 16px;
  color: var(--royal-gray);
  line-height: 1.8;
}

.royal-calc-box {
  background: var(--royal-panel);
  border: 2px solid var(--royal-gold);
  border-radius: 12px;
  padding: 32px;
}

.royal-calc-input {
  margin-bottom: 32px;
}

.royal-calc-input label {
  display: block;
  margin-bottom: 12px;
  color: var(--royal-gold);
  font-weight: 600;
}

.royal-calc-input input[type="range"] {
  width: 100%;
  height: 6px;
  background: rgba(212,165,116,.2);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.royal-calc-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--royal-gold);
  cursor: pointer;
  border-radius: 50%;
}

.royal-calc-input input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--royal-gold);
  cursor: pointer;
  border-radius: 50%;
}

.royal-calc-value {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--royal-gold);
  margin-top: 16px;
}

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

.royal-calc-item {
  padding: 16px;
  background: rgba(212,165,116,.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.royal-calc-item span {
  font-size: 13px;
  color: var(--royal-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.royal-calc-item strong {
  font-size: 20px;
  color: var(--royal-gold);
  font-weight: 700;
}

.royal-calc-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--royal-muted);
  font-style: italic;
}

/* Footer */
.royal-footer {
  background: var(--royal-panel);
  border-top: 1px solid var(--royal-border);
  padding: 60px 20px 32px;
  margin-top: 80px;
}

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

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

.royal-footer-col ul {
  list-style: none;
  padding: 0;
}

.royal-footer-col li {
  margin-bottom: 10px;
}

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

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

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

.royal-footer-licenses {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.royal-license {
  padding: 6px 14px;
  background: var(--royal-dark);
  border: 1px solid var(--royal-border);
  border-radius: 4px;
  color: var(--royal-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.royal-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.royal-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--royal-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gray);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all var(--royal-trans-fast);
}

.royal-social a:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
  transform: translateY(-2px);
}

/* Responsive Design */
@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: 28px;
    transition: left var(--royal-trans-base);
    z-index: 999;
  }

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

  .royal-burger {
    display: flex;
  }

  .royal-actions {
    display: none;
  }

  .royal-actions-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--royal-border);
    gap: 12px;
  }

  .royal-actions-mobile .royal-btn-main,
  .royal-actions-mobile .royal-btn-secondary {
    width: 100%;
  }

  /* Hero Mobile */
  .royal-hero {
    padding: 90px 16px 50px;
  }

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

  .royal-hero-description p {
    font-size: 15px;
  }

  .royal-hero-buttons {
    flex-direction: column;
  }

  .royal-hero-buttons .royal-btn-main,
  .royal-hero-buttons .royal-btn-secondary {
    width: 100%;
  }

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

  .royal-stat-num {
    font-size: 22px;
  }

  /* Sections Mobile */
  .royal-intro-section,
  .royal-promos,
  .royal-features,
  .royal-games,
  .royal-live,
  .royal-sports,
  .royal-content,
  .royal-calculator {
    padding: 60px 16px;
  }

  .royal-section-title {
    font-size: 26px;
  }

  /* Promotions Mobile */
  .royal-promo-hero {
    padding: 32px 20px;
  }

  .royal-promo-amount {
    font-size: 30px;
  }

  .royal-deposit-item {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

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

  /* Features Mobile */
  .royal-features-grid {
    grid-template-columns: 1fr;
  }

  /* Games Mobile */
  .royal-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .royal-game-img {
    height: 200px;
  }

  /* Live Mobile */
  .royal-live-content {
    grid-template-columns: 1fr;
  }

  .royal-live-stats {
    grid-template-columns: 1fr;
  }

  /* Sports Mobile */
  .royal-sports-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .royal-sports-promo {
    padding: 28px 20px;
  }

  .royal-sports-promo h3 {
    font-size: 22px;
  }

  /* Content Mobile */
  .royal-article h2 {
    font-size: 26px;
  }

  .royal-article h3 {
    font-size: 20px;
  }

  .royal-article p {
    font-size: 15px;
  }

  .royal-final-cta {
    padding: 28px 20px;
  }

  /* Calculator Mobile */
  .royal-calc-results {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile */
  .royal-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .royal-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* Animations */
@keyframes royalPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* 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;
}

/* Performance */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}