/* ============================================
   APHRODITE CASINO — MAIN STYLESHEET
   Dark premium casino theme
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  --bg-primary: #0C0B18;
  --bg-secondary: #121024;
  --bg-tertiary: #17152A;
  --bg-card: #1B1A31;
  --bg-card-hover: #22203A;
  --bg-sidebar: #0E0C1B;
  --accent-cyan: #4CC9FF;
  --accent-cyan-dim: #2A7FBF;
  --accent-orange: #F77A0A;
  --accent-orange-light: #FF9A3E;
  --accent-gold: #FFD700;
  --accent-pink: #E84393;
  --text-primary: #FFFFFF;
  --text-secondary: #B5B1C7;
  --text-muted: #706B80;
  --text-dim: #504C60;
  --border-subtle: rgba(255,255,255,0.06);
  --border-cyan: rgba(76,201,255,0.3);
  --gradient-promo: linear-gradient(135deg, #4CC9FF 0%, #1C6EFF 100%);
  --gradient-orange: linear-gradient(135deg, #F77A0A 0%, #FF9A3E 100%);
  --gradient-hero: linear-gradient(160deg, #0C0B18 0%, #1a0f3a 40%, #0C0B18 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow-cyan: 0 0 20px rgba(76,201,255,0.15);
  --shadow-glow-orange: 0 0 20px rgba(247,122,10,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --sidebar-width: 280px;
  --mobile-header-h: 60px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  line-height: 1.3;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-promo);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-subtle);
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform var(--transition);
}

.sidebar::-webkit-scrollbar {
  width: 4px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--text-dim);
  border-radius: 4px;
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 16px 16px;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-logo img {
  max-width: 180px;
  margin: 0 auto;
}

/* --- Promo Banner --- */
.sidebar-promo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gradient-promo);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sidebar-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: promoShine 3s infinite;
}

@keyframes promoShine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.sidebar-promo:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(76,201,255,0.3);
}

.promo-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.promo-text {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.promo-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.promo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

.promo-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* --- Sidebar Nav --- */
.sidebar-nav {
  margin-bottom: 24px;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  position: relative;
  border: 1px solid transparent;
}

.nav-link i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-card);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.nav-link.active i {
  color: var(--accent-cyan);
}

/* --- Popular Games --- */
.sidebar-popular {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.popular-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-left: 4px;
}

.popular-game {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 6px;
  background: var(--bg-card);
  transition: background var(--transition);
}

.popular-game:hover {
  background: var(--bg-card-hover);
}

.game-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.game-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.game-info strong {
  font-size: 13px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-info span {
  font-size: 11px;
  color: var(--text-muted);
}

.game-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-play:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-glow-orange);
}

/* --- Sidebar Footer --- */
.sidebar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.flag-fr {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(to right, #0055A4 33.3%, #fff 33.3%, #fff 66.6%, #EF4135 66.6%);
  flex-shrink: 0;
}

.sidebar-support {
  display: flex;
  gap: 8px;
}

.sidebar-support a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all var(--transition);
}

.sidebar-support a:hover {
  color: var(--accent-cyan);
  background: var(--bg-card-hover);
}

/* ============================================
   MOBILE HEADER
   ============================================ */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mobile-header-h);
  background: rgba(12,11,24,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.mobile-logo {
  max-height: 36px;
  width: auto;
}

.burger-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}

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

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

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

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

.mobile-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--gradient-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: box-shadow var(--transition);
}

.mobile-cta:hover {
  box-shadow: var(--shadow-glow-orange);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,24,0.35) 0%, rgba(12,11,24,0.7) 60%, rgba(12,11,24,0.95) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,201,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(76,201,255,0.3), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(247,122,10,0.2), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(76,201,255,0.15), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(255,215,0,0.15), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.1), transparent);
  background-size: 100% 100%;
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2.5rem;
}

/* Hero Cards */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}

.hero-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-cyan);
}

.hero-card-icon {
  font-size: 24px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.hero-card-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-card-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* CTAs */
.hero-cta-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow-orange);
  transform: translateY(-2px);
}

.btn-primary.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--accent-cyan);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-cyan-dim);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(76,201,255,0.08);
  border-color: var(--accent-cyan);
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

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

.game-category-card:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.gcc-icon {
  font-size: 28px;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.game-category-card h3 {
  font-size: 1.15rem;
}

.game-category-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-list {
  margin-top: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  opacity: 0.7;
}

/* ============================================
   INFO TABLES
   ============================================ */
.info-table-wrap {
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow-x: auto;
}

.info-table-wrap h3 {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-table thead th {
  background: var(--bg-tertiary);
  color: var(--accent-cyan);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 2px solid var(--border-cyan);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-table thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.info-table thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.info-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

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

.info-table tbody tr:hover td {
  background: rgba(76,201,255,0.03);
}

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

/* ============================================
   LIVE CASINO SECTION
   ============================================ */
.live-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

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

.live-card:hover {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-glow-orange);
}

.live-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247,122,10,0.15), rgba(247,122,10,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-orange);
}

.live-card p {
  font-size: 14px;
}

/* Live Games Grid */
.live-games-list {
  margin-top: 2rem;
}

.live-games-list h3 {
  margin-bottom: 16px;
}

.live-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.lg-item:hover {
  border-color: var(--border-cyan);
}

.lg-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-tertiary);
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lg-badge.hot {
  background: rgba(247,122,10,0.15);
  color: var(--accent-orange);
}

.lg-badge.new {
  background: rgba(76,201,255,0.12);
  color: var(--accent-cyan);
}

.lg-item h4 {
  color: var(--text-primary);
}

.lg-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   SPORTS SECTION
   ============================================ */
.sports-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2rem 0;
}

.sport-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition);
}

.sport-item i {
  color: var(--accent-cyan);
  font-size: 16px;
}

.sport-item:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.sports-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 1.5rem 0;
}

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

.sf-card:hover {
  border-color: var(--border-cyan);
}

.sf-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.sf-card h3 i {
  color: var(--accent-orange);
}

.sf-card p {
  font-size: 14px;
}

/* ============================================
   PROMOTIONS SECTION
   ============================================ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

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

.promo-card:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-card);
}

.promo-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-tertiary);
  color: var(--accent-cyan);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-welcome {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(76,201,255,0.05) 100%);
  border-color: var(--border-cyan);
}

.promo-welcome .promo-card-badge {
  background: var(--gradient-orange);
  color: #fff;
}

.promo-card p {
  font-size: 14px;
}

/* ============================================
   PROVIDERS SECTION
   ============================================ */
.providers-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

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

.provider-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.1);
}

.provider-card h3 {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.provider-card p {
  font-size: 14px;
}

/* ============================================
   PAYMENTS SECTION
   ============================================ */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

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

.pm-group:hover {
  border-color: var(--border-cyan);
}

.pm-group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.pm-group h3 i {
  color: var(--accent-cyan);
}

.pm-group p {
  font-size: 14px;
  margin-bottom: 0;
}

.payment-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.5rem;
}

.ph-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.ph-item i {
  color: #4CAF50;
  font-size: 16px;
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

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

.sec-card:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.sec-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(76,201,255,0.12), rgba(76,201,255,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.sec-card p {
  font-size: 14px;
}

/* ============================================
   DIAGNOSTIC SECTION
   ============================================ */
.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

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

.diag-card:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.diag-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(76,201,255,0.12), rgba(76,201,255,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.diag-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.diag-card p {
  font-size: 14px;
}

/* ============================================
   TRAPS / PIÈGES SECTION
   ============================================ */
.traps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 2rem 0;
}

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

.trap-card:hover {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-glow-orange);
}

.trap-num {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 36px;
  height: 36px;
  background: var(--gradient-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}

.trap-card h3 {
  font-size: 1rem;
  padding-right: 36px;
  margin-bottom: 10px;
}

.trap-card p {
  font-size: 13.5px;
  line-height: 1.65;
}

.trap-card p strong {
  color: var(--accent-cyan);
}

@media (max-width: 768px) {
  .diagnostic-grid,
  .traps-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.exp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

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

.exp-block:hover {
  border-color: var(--border-cyan);
}

.exp-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.exp-block h3 i {
  color: var(--accent-orange);
}

.exp-block p {
  font-size: 14px;
}

.exp-unique {
  margin-top: 2.5rem;
}

.exp-unique > h3 {
  margin-bottom: 1.25rem;
}

.exp-unique > h3 i {
  color: var(--accent-gold);
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.unique-item {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,215,0,0.03) 100%);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.unique-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.08);
}

.unique-item h4 {
  color: var(--accent-gold);
}

.unique-item p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-cyan);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-question i {
  color: var(--accent-cyan);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-brand img {
  max-width: 160px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-cyan);
}

.footer-partners {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 0;
  opacity: 0.55;
  transition: opacity var(--transition);
}

.footer-partners:hover {
  opacity: 0.85;
}

.footer-partners img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  filter: brightness(1.3);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-pill);
}

.badge-item i {
  color: var(--accent-cyan);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.footer-bottom p:first-child {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 13px;
  padding: 12px 20px;
  background: rgba(247,122,10,0.08);
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1100px) {
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .games-grid,
  .live-features,
  .sports-features-grid,
  .providers-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --sidebar-width: 280px;
  }

  .hero-video {
    display: none;
  }

  html {
    scroll-padding-top: 70px;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .mobile-header {
    display: flex;
  }

  .main-content {
    margin-left: 0;
    padding-top: var(--mobile-header-h);
  }

  .section {
    padding: 50px 0;
  }

  .hero-section {
    padding: 60px 0 50px;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

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

  .hero-card {
    padding: 16px 12px;
  }

  .hero-card-num {
    font-size: 1.4rem;
  }

  .hero-cta-wrap {
    flex-direction: column;
  }

  .hero-cta-wrap a {
    text-align: center;
    justify-content: center;
  }

  .games-grid,
  .live-features,
  .sports-features-grid,
  .promo-grid,
  .providers-showcase,
  .payment-methods,
  .security-grid,
  .exp-features {
    grid-template-columns: 1fr;
  }

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

  .promo-welcome {
    grid-column: auto;
  }

  .sports-highlights {
    gap: 8px;
  }

  .sport-item {
    padding: 10px 14px;
    font-size: 13px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-badges {
    gap: 8px;
  }

  .badge-item {
    font-size: 11px;
    padding: 6px 12px;
  }

  .info-table {
    font-size: 12px;
  }

  .info-table thead th,
  .info-table tbody td {
    padding: 10px 12px;
  }

  .info-table-wrap {
    padding: 16px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-card {
    padding: 14px 10px;
  }

  .hero-card-num {
    font-size: 1.2rem;
  }

  .hero-card-label {
    font-size: 11px;
  }

  h1 {
    font-size: 1.35rem;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Desktop large */
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  background: var(--bg-secondary);
  padding: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.features-strip .container {
  padding: 0;
}

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

@media (max-width: 768px) {
  .features-strip img {
    min-height: 80px;
    object-fit: cover;
  }
}

/* ============================================
   SECTION BANNERS
   ============================================ */
.section-banner {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.section-banner:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.section-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.section-banner:hover img {
  transform: scale(1.015);
}

.banner-link {
  display: block;
  position: relative;
}

.banner-link::after {
  content: 'Découvrir →';
  position: absolute;
  bottom: 16px;
  right: 20px;
  background: var(--gradient-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  pointer-events: none;
}

.section-banner:hover .banner-link::after {
  opacity: 1;
  transform: translateY(0);
}

/* Hero dual banners */
.hero-banner-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2.5rem;
  border: none;
  overflow: visible;
  border-radius: 0;
}

.hero-banner-duo:hover {
  border-color: transparent;
  box-shadow: none;
}

.hero-banner-duo .banner-link {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.hero-banner-duo .banner-link:hover {
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.hero-banner-duo .banner-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-banner-duo .banner-link:hover img {
  transform: scale(1.02);
}

.hero-banner-duo .banner-link::after {
  bottom: 12px;
  right: 16px;
}

.hero-banner-duo .banner-link:first-child::after {
  content: 'Réclamer le bonus →';
}

.hero-banner-duo .banner-link:last-child::after {
  content: 'S\'inscrire →';
}

@media (max-width: 768px) {
  .hero-banner-duo {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-banner {
    margin-top: 1.5rem;
  }

  .banner-link::after {
    font-size: 12px;
    padding: 6px 14px;
    bottom: 10px;
    right: 12px;
  }
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

/* Smooth scrollbar */
@media (min-width: 769px) {
  body::-webkit-scrollbar {
    width: 8px;
  }

  body::-webkit-scrollbar-track {
    background: var(--bg-primary);
  }

  body::-webkit-scrollbar-thumb {
    background: var(--bg-card-hover);
    border-radius: 4px;
  }

  body::-webkit-scrollbar-thumb:hover {
    background: var(--text-dim);
  }
}
