/* ============================================================
   21st.dev CASINO COMPONENTS - CSS
   ============================================================
   Source: https://21st.dev/community/components
   Converti de React/Tailwind → Vanilla CSS

   COMMENT UTILISER:
   1. Copie ce fichier dans ton projet
   2. Ajoute <link rel="stylesheet" href="casino-components.css"> dans ton HTML
   3. Utilise les classes CSS sur tes éléments HTML
   ============================================================ */


/* ============================================================
   VARIABLES - Couleurs casino (modifie ici pour tout changer)
   ============================================================ */
:root {
  --casino-gold: #FFD700;
  --casino-gold-dark: #B8860B;
  --casino-gold-light: #fff2b0;
  --casino-black: #0a0a0a;
  --casino-dark: #111111;
  --casino-green: #00ff88;
  --casino-purple: #8B5CF6;
  --casino-blue: #3B82F6;
  --casino-red: #EF4444;
  --casino-pink: #EC4899;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}


/* ============================================================
   1. AURORA BACKGROUND
   Source: Aurora Background (781 downloads)

   Usage: Ajoute la classe "aurora-bg" sur un conteneur.
   Il faut aussi un <div class="aurora-extra"></div> dedans.
   ============================================================ */
.aurora-bg {
  position: relative;
  overflow: hidden;
  background: var(--casino-black);
}

.aurora-bg::before,
.aurora-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: aurora-drift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.aurora-bg::before {
  background: radial-gradient(circle, var(--casino-gold) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.aurora-bg::after {
  background: radial-gradient(circle, var(--casino-purple) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  animation-delay: -4s;
}

.aurora-bg .aurora-extra {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  background: radial-gradient(circle, var(--casino-green) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aurora-drift 12s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, -40px) scale(1.1); }
  66%  { transform: translate(-40px, 60px) scale(0.9); }
  100% { transform: translate(30px, 30px) scale(1.05); }
}


/* ============================================================
   2. SPARKLES (Particules)
   Source: Aceternity/Sparkles (664 downloads)

   Usage: Conteneur avec classe "sparkles-container",
   un <canvas class="sparkles-canvas" id="mon-id"></canvas> dedans,
   et ton contenu dans <div class="content">...</div>
   → Initialise en JS: new SparklesEffect(canvas, options)
   ============================================================ */
.sparkles-container {
  position: relative;
  overflow: hidden;
}

.sparkles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.sparkles-container .content {
  position: relative;
  z-index: 2;
}


/* ============================================================
   3. GLOWING EFFECT
   Source: Glowing Effect (1000+ downloads)

   3 variantes:
   - .glow          → bordure dorée tournante (le plus stylé)
   - .glow-static   → glow fixe qui s'amplifie au hover
   - .glow-pulse    → glow qui pulse en continu
   ============================================================ */

/* --- Glow rotatif (nécessite @property, Chrome/Edge/Safari) --- */
.glow {
  position: relative;
}

.glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%, var(--casino-gold) 10%, transparent 20%,
    transparent 80%, var(--casino-gold) 90%, transparent 100%
  );
  z-index: -1;
  animation: glow-rotate 3s linear infinite;
  opacity: 0.8;
}

.glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%, var(--casino-gold) 10%, transparent 20%,
    transparent 80%, var(--casino-gold) 90%, transparent 100%
  );
  z-index: -1;
  animation: glow-rotate 3s linear infinite;
  filter: blur(15px);
  opacity: 0.5;
}

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes glow-rotate {
  to { --glow-angle: 360deg; }
}

/* --- Glow statique (hover) --- */
.glow-static {
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.3),
    0 0 30px rgba(255, 215, 0, 0.15),
    0 0 60px rgba(255, 215, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.glow-static:hover {
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.25),
    0 0 80px rgba(255, 215, 0, 0.1);
}

/* --- Glow pulse --- */
.glow-pulse {
  animation: glow-pulse-anim 2s ease-in-out infinite;
}

@keyframes glow-pulse-anim {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255,215,0,0.3), 0 0 30px rgba(255,215,0,0.15);
  }
  50% {
    box-shadow: 0 0 25px rgba(255,215,0,0.5), 0 0 50px rgba(255,215,0,0.25), 0 0 80px rgba(255,215,0,0.1);
  }
}


/* ============================================================
   4. SHIMMER BUTTON
   Source: Shimmer Button (136 downloads)

   Usage: <button class="shimmer-btn">Texte</button>
   Variante dark: <button class="shimmer-btn-dark">Texte</button>
   ============================================================ */
.shimmer-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    110deg,
    var(--casino-gold-dark) 0%,
    var(--casino-gold) 45%,
    var(--casino-gold-light) 50%,
    var(--casino-gold) 55%,
    var(--casino-gold-dark) 100%
  );
  background-size: 200% 100%;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: shimmer-slide 2s linear infinite;
  font-family: inherit;
}

.shimmer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

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

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

/* Variante sombre */
.shimmer-btn-dark {
  background: linear-gradient(
    110deg,
    #1a1a2e 0%, #2a2a4e 45%, #4a4a7e 50%, #2a2a4e 55%, #1a1a2e 100%
  );
  background-size: 200% 100%;
  color: #fff;
  animation: shimmer-slide 2.5s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.shimmer-btn-dark:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Variante verte */
.shimmer-btn-green {
  background: linear-gradient(
    110deg,
    #065f46 0%, #10b981 45%, #6ee7b7 50%, #10b981 55%, #065f46 100%
  );
  background-size: 200% 100%;
  animation: shimmer-slide 2s linear infinite;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.shimmer-btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

/* Variante violette */
.shimmer-btn-purple {
  background: linear-gradient(
    110deg,
    #4c1d95 0%, #8b5cf6 45%, #c4b5fd 50%, #8b5cf6 55%, #4c1d95 100%
  );
  background-size: 200% 100%;
  animation: shimmer-slide 2s linear infinite;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.shimmer-btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}


/* ============================================================
   5. MOVING BORDER
   Source: Moving Border (284 downloads)

   Usage: <div class="moving-border"><div class="moving-border-content">...</div></div>
   ============================================================ */
.moving-border {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle, 0deg) at 50% 50%,
    transparent 0%, var(--casino-gold) 25%, transparent 50%,
    transparent 75%, var(--casino-gold) 100%
  );
  animation: border-spin 3s linear infinite;
}

.moving-border-content {
  background: var(--casino-dark);
  border-radius: 14px;
  padding: 30px;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}


/* ============================================================
   6. BORDER BEAM
   Source: Border Beam (101 downloads)

   Usage: Ajoute la classe "border-beam" sur n'importe quel conteneur.
   ============================================================ */
.border-beam {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.border-beam::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--beam-angle, 0deg),
    transparent 85%, var(--casino-gold) 95%, transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: beam-rotate 4s linear infinite;
  pointer-events: none;
}

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes beam-rotate {
  to { --beam-angle: 360deg; }
}


/* ============================================================
   7. NEON BUTTON
   Source: Neon Button (90 downloads)

   Usage: <button class="neon-btn">Texte</button>
   Variantes: .neon-btn--green, .neon-btn--purple, .neon-btn--red
   ============================================================ */
.neon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--casino-gold);
  background: transparent;
  border: 2px solid var(--casino-gold);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: inherit;
}

.neon-btn:hover {
  color: #000;
  background: var(--casino-gold);
  box-shadow:
    0 0 10px var(--casino-gold),
    0 0 20px rgba(255, 215, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.3),
    inset 0 0 10px rgba(255, 215, 0, 0.3);
}

.neon-btn--green { color: var(--casino-green); border-color: var(--casino-green); }
.neon-btn--green:hover {
  color: #000; background: var(--casino-green);
  box-shadow: 0 0 10px var(--casino-green), 0 0 20px rgba(0,255,136,0.5), 0 0 40px rgba(0,255,136,0.3);
}

.neon-btn--purple { color: var(--casino-purple); border-color: var(--casino-purple); }
.neon-btn--purple:hover {
  color: #fff; background: var(--casino-purple);
  box-shadow: 0 0 10px var(--casino-purple), 0 0 20px rgba(139,92,246,0.5), 0 0 40px rgba(139,92,246,0.3);
}

.neon-btn--red { color: var(--casino-red); border-color: var(--casino-red); }
.neon-btn--red:hover {
  color: #fff; background: var(--casino-red);
  box-shadow: 0 0 10px var(--casino-red), 0 0 20px rgba(239,68,68,0.5), 0 0 40px rgba(239,68,68,0.3);
}


/* ============================================================
   8. SPOTLIGHT CARD
   Source: Spotlight Card (372 downloads)

   Usage: <div class="spotlight-card" data-spotlight>...</div>
   → Nécessite casino-components.js pour le tracking souris
   ============================================================ */
.spotlight-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.3s;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translate(-50%, -50%);
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
}

.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
}


/* ============================================================
   9. GLARE CARD (Holographique 3D)
   Source: Glare Card (320 downloads)

   Usage: <div class="glare-card" data-glare>
            <div class="glare-overlay"></div>
            ... ton contenu ...
          </div>
   → Nécessite casino-components.js pour le tilt 3D
   ============================================================ */
.glare-card {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s ease-out;
  overflow: hidden;
}

.glare-card .glare-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 215, 0, 0.05) 45%,
    rgba(255, 215, 0, 0.1) 50%,
    rgba(255, 215, 0, 0.05) 55%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.glare-card:hover .glare-overlay {
  opacity: 1;
}


/* ============================================================
   10. DISPLAY CARD
   Source: Display Cards (872 downloads)

   Usage: voir examples.html pour la structure HTML complète
   ============================================================ */
.display-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--casino-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.display-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,215,0,0.1);
}

.display-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.display-card:hover .card-image {
  transform: scale(1.05);
}

.display-card .card-body {
  padding: 20px;
}

.display-card .card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--casino-gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 12px;
}

.display-card .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.display-card .card-desc {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}


/* ============================================================
   11. BENTO GRID
   Source: Bento Grid (815 downloads)
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-item:hover {
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.bento-item.span-2 { grid-column: span 2; }
.bento-item.span-row-2 { grid-row: span 2; }

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.span-2 { grid-column: span 1; }
}


/* ============================================================
   12. SLIDING NUMBER
   Source: Sliding Number (417 downloads)

   Usage: <span class="sliding-number" data-target="12847">0</span>
   → Nécessite casino-components.js pour l'animation
   ============================================================ */
.sliding-number {
  display: inline-flex;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}


/* ============================================================
   13. ANIMATED SHINY TEXT
   Source: Animated Shiny Text (67 downloads)

   Usage: <span class="shiny-text">MON TEXTE</span>
   Variante: <span class="shiny-text-white">MON TEXTE</span>
   ============================================================ */
.shiny-text {
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.6) 0%, rgba(255,215,0,1) 25%,
    rgba(255,255,255,0.6) 50%, rgba(255,215,0,1) 75%,
    rgba(255,255,255,0.6) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shiny-move 3s linear infinite;
}

.shiny-text-white {
  background: linear-gradient(
    120deg,
    #fff 0%, rgba(255,215,0,0.8) 40%, #fff 60%,
    rgba(255,215,0,0.8) 80%, #fff 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shiny-move 4s linear infinite;
}

@keyframes shiny-move {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}


/* ============================================================
   14. HIGHLIGHTER
   Source: Highlighter (274 downloads)

   Usage: <span class="highlighter">texte important</span>
   ============================================================ */
.highlighter {
  position: relative;
  display: inline;
}

.highlighter::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  right: -4px;
  height: 40%;
  background: linear-gradient(90deg, var(--casino-gold), rgba(255,215,0,0.6));
  z-index: -1;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlight-in 0.6s ease-out 0.3s forwards;
}

.highlighter-pulse::after {
  animation: highlight-in 0.6s ease-out 0.3s forwards, highlight-pulse 2s ease-in-out 0.9s infinite;
}

@keyframes highlight-in {
  to { transform: scaleX(1); }
}

@keyframes highlight-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}


/* ============================================================
   15. HERO PILL (Badge)
   Source: Hero Pill (95 downloads)

   Usage: <a class="hero-pill" href="#">
            <span class="pill-dot"></span>
            Texte du badge
          </a>
   ============================================================ */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  font-size: 13px;
  font-weight: 500;
  color: var(--casino-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-pill:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-1px);
}

.hero-pill .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--casino-gold);
  animation: pill-blink 2s ease-in-out infinite;
}

.hero-pill .pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15);
  font-size: 12px;
}

@keyframes pill-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* ============================================================
   16. GLASS TESTIMONIAL
   Source: Glass Testimonial swiper (147 downloads)
   ============================================================ */
.glass-testimonial {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.glass-testimonial:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 215, 0, 0.15);
}

.glass-testimonial .testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--casino-gold);
  font-size: 16px;
}

.glass-testimonial .testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
  font-style: italic;
}

.glass-testimonial .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.glass-testimonial .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--casino-gold), var(--casino-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.glass-testimonial .testimonial-name { font-weight: 600; font-size: 14px; }
.glass-testimonial .testimonial-role { font-size: 12px; color: #888; }


/* ============================================================
   17. PRICING CARD (Bonus casino)
   Source: Pricing Section (698 downloads)
   ============================================================ */
.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
  border-color: var(--casino-gold);
  background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(255,215,0,0.02));
}

.pricing-card .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark));
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  white-space: nowrap;
}

.pricing-card .pricing-name { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.pricing-card .pricing-amount { font-size: 48px; font-weight: 800; margin-bottom: 4px; line-height: 1; }
.pricing-card .pricing-amount span { font-size: 16px; font-weight: 400; color: #888; }
.pricing-card .pricing-desc { font-size: 14px; color: #888; margin-bottom: 24px; }

.pricing-card .pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-card .pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-card .pricing-features li::before {
  content: '\2713';
  color: var(--casino-green);
  font-weight: 700;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,255,136,0.1);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============================================================
   18. COMPARISON TABLE
   Source: Comparison Table (51 downloads)
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.comparison-table tr:hover td { background: rgba(255, 215, 0, 0.03); }
.comparison-table .winner { color: var(--casino-gold); font-weight: 600; }
.comparison-table .check { color: var(--casino-green); }
.comparison-table .cross { color: var(--casino-red); opacity: 0.5; }


/* ============================================================
   19. FEATURE SHOWCASE
   Source: Feature Showcase (163 downloads)
   ============================================================ */
.feature-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-item {
  padding: 28px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-item:hover {
  border-color: rgba(255, 215, 0, 0.15);
  transform: translateY(-4px);
}

.feature-item .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-item .feature-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-item .feature-desc { font-size: 14px; color: #999; line-height: 1.6; }


/* ============================================================
   20. ANIMATED GRADIENT BACKGROUND
   Source: Background Gradient Animation (317 downloads)
   ============================================================ */
.gradient-bg-animated {
  background: linear-gradient(-45deg, var(--casino-black), #1a0a2e, #0a1628, var(--casino-black), #1a1a00);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-gold { color: var(--casino-gold); }
.text-green { color: var(--casino-green); }
.text-muted { color: #888; }

.gradient-text {
  background: linear-gradient(135deg, var(--casino-gold), #fff, var(--casino-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}


/* ============================================================
   21. PLAYER PROFILE CARD
   Carte profil joueur avec avatar, niveau, XP bar, stats

   Usage: <div class="player-profile-card">...</div>
   ============================================================ */
.player-profile-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.player-profile-card:hover {
  border-color: rgba(255, 215, 0, 0.15);
}

.player-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--casino-gold), var(--casino-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  position: relative;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}
.player-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.player-avatar .avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--casino-green);
  border: 3px solid #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.player-username {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.player-tag {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
}

/* Level & XP Bar */
.player-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.player-level-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--casino-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.player-level-value {
  font-size: 12px;
  color: #888;
}
.xp-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 20px;
}
.xp-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--casino-gold-dark), var(--casino-gold));
  transition: width 1s ease-out;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Player Stats Row */
.player-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.player-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.player-stat-value {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.player-stat-label {
  display: block;
  font-size: 10px;
  color: #666;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ============================================================
   22. PLAYER DASHBOARD
   Dashboard joueur : balance, actions rapides, activité récente

   Usage: <div class="player-dashboard">...</div>
   ============================================================ */
.player-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .player-dashboard { grid-template-columns: 1fr; }
}

/* Balance Card */
.balance-card {
  background: linear-gradient(135deg, rgba(255,215,0,0.06), rgba(255,215,0,0.02));
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 24px;
  grid-column: span 2;
}
@media (max-width: 768px) {
  .balance-card { grid-column: span 1; }
}
.balance-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.balance-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--casino-gold);
  line-height: 1.1;
  margin-bottom: 16px;
}
.balance-actions {
  display: flex;
  gap: 10px;
}

/* Quick Action Button */
.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  min-width: 90px;
}
.quick-action-btn:hover {
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 215, 0, 0.05);
  color: var(--casino-gold);
  transform: translateY(-2px);
}
.quick-action-btn .qa-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}


/* ============================================================
   23. TRANSACTION HISTORY
   Historique des transactions avec filtres

   Usage: <div class="tx-history">...</div>
   ============================================================ */
.tx-history {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}
.tx-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tx-history-title {
  font-size: 16px;
  font-weight: 700;
}
.tx-filters {
  display: flex;
  gap: 6px;
}
.tx-filter-btn {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.tx-filter-btn:hover,
.tx-filter-btn.active {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.25);
  color: var(--casino-gold);
}

.tx-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
}
.tx-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.tx-row:last-child {
  border-bottom: none;
}

.tx-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.tx-icon.deposit { background: rgba(0, 255, 136, 0.1); }
.tx-icon.withdraw { background: rgba(239, 68, 68, 0.1); }
.tx-icon.bonus { background: rgba(255, 215, 0, 0.1); }
.tx-icon.bet { background: rgba(139, 92, 246, 0.1); }

.tx-info {
  flex: 1;
  min-width: 0;
}
.tx-label {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tx-date {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}
.tx-amount {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.tx-amount.positive { color: var(--casino-green); }
.tx-amount.negative { color: var(--casino-red); }
.tx-amount.bonus-color { color: var(--casino-gold); }

.tx-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.tx-status.completed { background: rgba(0,255,136,0.1); color: var(--casino-green); }
.tx-status.pending-tx { background: rgba(255,215,0,0.1); color: var(--casino-gold); }
.tx-status.failed { background: rgba(239,68,68,0.1); color: var(--casino-red); }


/* ============================================================
   24. PLAYER SETTINGS FORM
   Formulaire paramètres joueur

   Usage: <div class="settings-form">...</div>
   ============================================================ */
.settings-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
}
.settings-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.settings-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.settings-section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--casino-gold);
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--casino-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}
.form-input::placeholder {
  color: #555;
}

/* Toggle Switch */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.toggle-label {
  font-size: 14px;
  color: #ccc;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--casino-gold);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}


/* ============================================================
   25. ADMIN DASHBOARD STATS
   Cartes KPI pour admin panel

   Usage: <div class="admin-stats">...</div>
   ============================================================ */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .admin-stats { grid-template-columns: 1fr; }
}

.admin-kpi {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.admin-kpi:hover {
  border-color: rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}
.admin-kpi::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.15;
  pointer-events: none;
}
.admin-kpi.kpi-gold::after { background: var(--casino-gold); }
.admin-kpi.kpi-green::after { background: var(--casino-green); }
.admin-kpi.kpi-purple::after { background: var(--casino-purple); }
.admin-kpi.kpi-blue::after { background: var(--casino-blue); }

.kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.kpi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.kpi-icon.gold { background: rgba(255, 215, 0, 0.1); }
.kpi-icon.green { background: rgba(0, 255, 136, 0.1); }
.kpi-icon.purple { background: rgba(139, 92, 246, 0.1); }
.kpi-icon.blue { background: rgba(59, 130, 246, 0.1); }

.kpi-trend {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}
.kpi-trend.up { background: rgba(0,255,136,0.1); color: var(--casino-green); }
.kpi-trend.down { background: rgba(239,68,68,0.1); color: var(--casino-red); }

.kpi-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}
.kpi-label {
  font-size: 12px;
  color: #666;
}


/* ============================================================
   26. ADMIN USER TABLE
   Table de gestion utilisateurs

   Usage: <div class="admin-table-wrap">...</div>
   ============================================================ */
.admin-table-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}
.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 12px;
}
.admin-table-title {
  font-size: 16px;
  font-weight: 700;
}
.admin-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 220px;
}
.admin-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  width: 100%;
}
.admin-search input::placeholder { color: #555; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
}
.admin-table td {
  padding: 14px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  vertical-align: middle;
}
.admin-table tr:hover td {
  background: rgba(255, 215, 0, 0.02);
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-cell-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--casino-gold), var(--casino-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.user-cell-name { font-weight: 600; }
.user-cell-email { font-size: 11px; color: #666; }

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}
.status-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.status-dot.online::before { background: var(--casino-green); box-shadow: 0 0 6px var(--casino-green); }
.status-dot.offline::before { background: #555; }
.status-dot.banned::before { background: var(--casino-red); }

.role-badge {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.role-badge.admin { background: rgba(239,68,68,0.1); color: var(--casino-red); border: 1px solid rgba(239,68,68,0.2); }
.role-badge.vip { background: rgba(255,215,0,0.1); color: var(--casino-gold); border: 1px solid rgba(255,215,0,0.2); }
.role-badge.member { background: rgba(255,255,255,0.05); color: #888; border: 1px solid rgba(255,255,255,0.08); }

.admin-table .action-btns {
  display: flex;
  gap: 6px;
}
.admin-table .action-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s;
}
.admin-table .action-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
  color: var(--casino-gold);
}


/* ============================================================
   27. ADMIN MINI CHART
   Placeholder graphique avec barres CSS

   Usage: <div class="mini-chart">...</div>
   ============================================================ */
.mini-chart {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 22px;
}
.mini-chart-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.mini-chart-value {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--casino-gold);
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--casino-gold), rgba(255,215,0,0.3));
  transition: height 0.5s ease;
  min-width: 8px;
}
.chart-bar:hover {
  background: var(--casino-gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}


/* ============================================================
   28. LIVE CHAT WIDGET
   Widget de chat en bas à droite

   Usage: <div class="chat-widget">...</div>
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
.chat-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  position: relative;
}
.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}
.chat-bubble .chat-notif {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--casino-red);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0a0a;
}

.chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  display: none;
}
.chat-window.open { display: block; }

.chat-window-header {
  padding: 16px 20px;
  background: rgba(255, 215, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-window-title { font-size: 14px; font-weight: 700; }
.chat-window-close {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.chat-messages {
  padding: 16px;
  height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
}
.chat-msg.bot {
  background: rgba(255, 255, 255, 0.06);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: rgba(255, 215, 0, 0.12);
  color: var(--casino-gold-light);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-input-wrap {
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}
.chat-input:focus {
  border-color: rgba(255, 215, 0, 0.3);
}
.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--casino-gold);
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.chat-send:hover {
  background: var(--casino-gold-light);
}


/* ============================================================
   29. VIP TIERS / PROGRAMME VIP
   Cartes de niveaux VIP

   Usage: <div class="vip-tiers">...</div>
   ============================================================ */
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.vip-tier {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.vip-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}
.vip-tier.current {
  border-color: var(--casino-gold);
  background: linear-gradient(135deg, rgba(255,215,0,0.06), rgba(255,215,0,0.02));
}
.vip-tier.current::after {
  content: 'ACTUEL';
  position: absolute;
  top: 12px;
  right: -24px;
  transform: rotate(45deg);
  padding: 2px 30px;
  background: var(--casino-gold);
  color: #000;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.vip-tier-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.vip-tier-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vip-tier-req {
  font-size: 11px;
  color: #666;
  margin-bottom: 16px;
}
.vip-tier-perks {
  list-style: none;
  text-align: left;
  padding: 0;
}
.vip-tier-perks li {
  padding: 6px 0;
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.vip-tier-perks li::before {
  content: '✓';
  color: var(--casino-green);
  font-weight: 700;
  font-size: 10px;
}


/* ============================================================
   30. NOTIFICATION TOAST
   Notification système en haut à droite

   Usage: <div class="toast">...</div>
   ============================================================ */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  min-width: 320px;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  animation: toast-in 0.4s ease-out;
  backdrop-filter: blur(20px);
}
.toast.toast-success { border-left: 3px solid var(--casino-green); }
.toast.toast-error { border-left: 3px solid var(--casino-red); }
.toast.toast-warning { border-left: 3px solid var(--casino-gold); }
.toast.toast-info { border-left: 3px solid var(--casino-blue); }

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.toast-success .toast-icon { background: rgba(0,255,136,0.1); }
.toast-error .toast-icon { background: rgba(239,68,68,0.1); }
.toast-warning .toast-icon { background: rgba(255,215,0,0.1); }

.toast-content { flex: 1; }
.toast-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.toast-message { font-size: 12px; color: #888; line-height: 1.4; }
.toast-close {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}


/* ============================================================
   31. FAQ ACCORDION
   Accordéon pour FAQ

   Usage: <div class="faq-list">...</div>
   ============================================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.12);
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: var(--glass-bg);
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.06);
}
.faq-chevron {
  transition: transform 0.3s;
  font-size: 12px;
  color: var(--casino-gold);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-answer p {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
}


/* ============================================================
   32. RESPONSIBLE GAMING BANNER
   Bandeau jeu responsable

   Usage: <div class="responsible-banner">...</div>
   ============================================================ */
.responsible-banner {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.responsible-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.responsible-text {
  flex: 1;
}
.responsible-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.responsible-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}
.responsible-link {
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--casino-red);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.responsible-link:hover {
  background: rgba(239, 68, 68, 0.2);
}


/* ============================================================
   33. NEWSLETTER SIGNUP
   Formulaire inscription newsletter

   Usage: <div class="newsletter-box">...</div>
   ============================================================ */
.newsletter-box {
  background: linear-gradient(135deg, rgba(255,215,0,0.04), rgba(139,92,246,0.04));
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.newsletter-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.newsletter-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.newsletter-input:focus {
  border-color: var(--casino-gold);
}
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}


/* ============================================================
   34. FOOTER CASINO
   Footer complet avec colonnes

   Usage: <footer class="casino-footer">...</footer>
   ============================================================ */
.casino-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 24px 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
  color: var(--casino-gold);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--casino-gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: #444;
}
.footer-badges {
  display: flex;
  gap: 8px;
}
.footer-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #666;
}


/* ============================================================
   35. JACKPOT TICKER
   Bandeau défilant avec jackpots live

   Usage: <div class="jackpot-ticker">...</div>
   ============================================================ */
.jackpot-ticker {
  background: rgba(255, 215, 0, 0.04);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
.jackpot-ticker-inner {
  display: flex;
  gap: 40px;
  animation: ticker-scroll 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
}
.ticker-item .ticker-amount {
  color: var(--casino-gold);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}
.ticker-item .ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.4);
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   36. SIDEBAR NAVIGATION
   Navigation latérale pour dashboard/admin

   Usage: <aside class="sidebar">...</aside>
   ============================================================ */
.sidebar {
  width: 260px;
  height: 100vh;
  background: #0d0d0d;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 20px 12px;
  overflow-y: auto;
}
.sidebar-brand {
  padding: 8px 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}
.sidebar-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
}
.sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #444;
  padding: 8px 12px 6px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 2px;
}
.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.sidebar-link.active {
  background: rgba(255, 215, 0, 0.08);
  color: var(--casino-gold);
  font-weight: 600;
}
.sidebar-link .sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.sidebar-link.active .sidebar-icon {
  background: rgba(255, 215, 0, 0.12);
}
.sidebar-link .sidebar-badge {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(239, 68, 68, 0.15);
  color: var(--casino-red);
}

.sidebar-footer {
  margin-top: auto;
  padding: 16px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* ============================================================
   37. LOGIN / REGISTER MODAL
   Modale d'authentification

   Usage: <div class="auth-modal">...</div>
   ============================================================ */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.auth-modal {
  width: 100%;
  max-width: 400px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.auth-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}
.auth-subtitle {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 24px;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #888;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-tab.active {
  background: rgba(255, 215, 0, 0.1);
  color: var(--casino-gold);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: #555;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.auth-social-btns {
  display: flex;
  gap: 10px;
}
.auth-social-btn {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ccc;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: inherit;
}
.auth-social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #666;
}
.auth-footer a {
  color: var(--casino-gold);
  text-decoration: none;
}


/* ============================================================
   38. DEPOSIT / WITHDRAW FORM
   Formulaire de dépôt/retrait

   Usage: <div class="deposit-form">...</div>
   ============================================================ */
.deposit-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  max-width: 440px;
}
.deposit-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 24px;
}
.deposit-tab {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #888;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.deposit-tab.active {
  background: rgba(0, 255, 136, 0.1);
  color: var(--casino-green);
}

.amount-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.amount-preset {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: inherit;
}
.amount-preset:hover,
.amount-preset.selected {
  border-color: var(--casino-gold);
  background: rgba(255, 215, 0, 0.08);
  color: var(--casino-gold);
}

.payment-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.payment-method {
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #888;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.payment-method:hover,
.payment-method.selected {
  border-color: var(--casino-gold);
  color: var(--casino-gold);
  background: rgba(255, 215, 0, 0.05);
}


/* ============================================================
   39. GIVEAWAY / CONCOURS CARDS
   Cartes de concours avec countdown et participation

   Usage: <div class="giveaway-grid">...</div>
   ============================================================ */
.giveaway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.giveaway-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.giveaway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.08);
}
.giveaway-card.featured {
  border-color: rgba(255, 215, 0, 0.25);
  background: linear-gradient(135deg, rgba(255,215,0,0.04), rgba(139,92,246,0.03));
}
.giveaway-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--casino-gold), var(--casino-purple), var(--casino-gold));
}
.giveaway-header {
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.giveaway-type {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.giveaway-type.daily { background: rgba(0,255,136,0.1); color: var(--casino-green); border: 1px solid rgba(0,255,136,0.2); }
.giveaway-type.weekly { background: rgba(139,92,246,0.1); color: var(--casino-purple); border: 1px solid rgba(139,92,246,0.2); }
.giveaway-type.special { background: rgba(255,215,0,0.1); color: var(--casino-gold); border: 1px solid rgba(255,215,0,0.2); }
.giveaway-type.ended { background: rgba(255,255,255,0.05); color: #666; border: 1px solid rgba(255,255,255,0.08); }

.giveaway-participants {
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}
.giveaway-body {
  padding: 16px 20px;
  text-align: center;
}
.giveaway-prize-icon {
  font-size: 48px;
  margin-bottom: 8px;
}
.giveaway-prize-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.giveaway-prize-value {
  font-size: 13px;
  color: var(--casino-gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.giveaway-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Countdown */
.giveaway-countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.countdown-unit {
  text-align: center;
  min-width: 52px;
}
.countdown-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 4px;
  line-height: 1;
}
.countdown-label {
  display: block;
  font-size: 9px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.giveaway-footer {
  padding: 0 20px 20px;
  display: flex;
  gap: 8px;
}
.giveaway-footer .shimmer-btn,
.giveaway-footer .shimmer-btn-green,
.giveaway-footer .shimmer-btn-purple {
  flex: 1;
  justify-content: center;
  font-size: 13px !important;
  padding: 10px !important;
}
.giveaway-progress {
  padding: 0 20px 16px;
}
.giveaway-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.giveaway-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--casino-gold), var(--casino-green));
  transition: width 0.6s ease;
}
.giveaway-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #666;
  margin-top: 4px;
}
.giveaway-winner {
  padding: 12px 20px;
  margin: 0 20px 16px;
  border-radius: 10px;
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.15);
  text-align: center;
}
.giveaway-winner-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--casino-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.giveaway-winner-name {
  font-size: 14px;
  font-weight: 700;
}


/* ============================================================
   40. BOUTIQUE / SHOP ITEMS
   Grille d'items achetables avec coins virtuels

   Usage: <div class="shop-grid">...</div>
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.shop-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.shop-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.2);
}
.shop-item-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, rgba(255,215,0,0.04), rgba(139,92,246,0.04));
  position: relative;
}
.shop-item-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.shop-item-badge.hot { background: rgba(239,68,68,0.15); color: var(--casino-red); }
.shop-item-badge.new { background: rgba(0,255,136,0.1); color: var(--casino-green); }
.shop-item-badge.limited { background: rgba(255,215,0,0.1); color: var(--casino-gold); }
.shop-item-body {
  padding: 14px;
}
.shop-item-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.shop-item-desc {
  font-size: 11px;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.4;
}
.shop-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-item-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--casino-gold);
}
.shop-item-price .coin-icon {
  font-size: 14px;
}
.shop-buy-btn {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--casino-gold);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.shop-buy-btn:hover {
  background: rgba(255,215,0,0.2);
}
.shop-buy-btn.sold-out {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
  color: #555;
  cursor: not-allowed;
}
.shop-item-stock {
  font-size: 10px;
  color: #666;
  margin-top: 8px;
}
.shop-item-stock.low { color: var(--casino-red); }
.shop-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.shop-filter-btn {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #888;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.shop-filter-btn:hover,
.shop-filter-btn.active {
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.2);
  color: var(--casino-gold);
}


/* ============================================================
   41. TICKET SYSTEM
   Création de tickets + conversation

   Usage: <div class="ticket-create">...</div>
   ============================================================ */
.ticket-create {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
}
.ticket-create-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticket-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ticket-category {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #888;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.ticket-category:hover,
.ticket-category.selected {
  background: rgba(255,215,0,0.06);
  border-color: rgba(255,215,0,0.2);
  color: var(--casino-gold);
}

/* Ticket conversation */
.ticket-conversation {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
}
.ticket-conv-header {
  padding: 16px 20px;
  background: rgba(255,215,0,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-conv-title {
  font-size: 14px;
  font-weight: 700;
}
.ticket-conv-id {
  font-size: 11px;
  color: #666;
  font-family: monospace;
}
.ticket-status-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.ticket-status-badge.open { background: rgba(0,255,136,0.1); color: var(--casino-green); }
.ticket-status-badge.pending { background: rgba(255,215,0,0.1); color: var(--casino-gold); }
.ticket-status-badge.closed { background: rgba(255,255,255,0.05); color: #666; }
.ticket-status-badge.escalated { background: rgba(239,68,68,0.1); color: var(--casino-red); }

.ticket-messages {
  padding: 16px 20px;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ticket-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.ticket-msg.staff { flex-direction: row-reverse; }
.ticket-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  font-weight: 700;
}
.ticket-msg:not(.staff) .ticket-msg-avatar {
  background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark));
  color: #000;
}
.ticket-msg.staff .ticket-msg-avatar {
  background: linear-gradient(135deg, var(--casino-purple), var(--casino-blue));
  color: #fff;
}
.ticket-msg-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 75%;
}
.ticket-msg:not(.staff) .ticket-msg-bubble {
  background: rgba(255,255,255,0.06);
  border-bottom-left-radius: 4px;
}
.ticket-msg.staff .ticket-msg-bubble {
  background: rgba(139,92,246,0.1);
  border-bottom-right-radius: 4px;
}
.ticket-msg-time {
  font-size: 10px;
  color: #555;
  margin-top: 4px;
}
.ticket-reply-box {
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 8px;
}
.ticket-reply-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}
.ticket-reply-input:focus { border-color: rgba(255,215,0,0.3); }
.ticket-reply-send {
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--casino-gold);
  border: none;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.ticket-reply-send:hover { background: var(--casino-gold-light); }

/* Admin ticket list */
.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ticket-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
  cursor: pointer;
}
.ticket-list-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,215,0,0.15);
}
.ticket-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ticket-list-icon.open { background: rgba(0,255,136,0.1); }
.ticket-list-icon.pending { background: rgba(255,215,0,0.1); }
.ticket-list-icon.closed { background: rgba(255,255,255,0.05); }
.ticket-list-info { flex: 1; }
.ticket-list-subject {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.ticket-list-meta {
  font-size: 11px;
  color: #666;
}
.ticket-list-priority {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.ticket-list-priority.high { background: rgba(239,68,68,0.1); color: var(--casino-red); }
.ticket-list-priority.medium { background: rgba(255,215,0,0.1); color: var(--casino-gold); }
.ticket-list-priority.low { background: rgba(0,255,136,0.1); color: var(--casino-green); }


/* ============================================================
   42. DAILY REWARDS WIDGET
   Widget de récompenses quotidiennes

   Usage: <div class="daily-rewards">...</div>
   ============================================================ */
.daily-rewards {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
}
.daily-rewards-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.daily-streak {
  display: flex;
  gap: 6px;
}
.streak-day {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.streak-day.claimed {
  background: rgba(0,255,136,0.08);
  border-color: rgba(0,255,136,0.2);
}
.streak-day.today {
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 0 15px rgba(255,215,0,0.1);
}
.streak-day.locked { opacity: 0.4; }
.streak-day-label {
  display: block;
  font-size: 9px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.streak-day-reward {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}
.streak-day-coins {
  display: block;
  font-size: 10px;
  color: var(--casino-gold);
  font-weight: 600;
}
.streak-day.claimed .streak-day-reward::after {
  content: ' ✓';
  color: var(--casino-green);
  font-size: 11px;
}


/* ============================================================
   43. COINS BALANCE CARD (replaces deposit form)
   Carte de solde en monnaie virtuelle

   Usage: <div class="coins-card">...</div>
   ============================================================ */
.coins-card {
  background: linear-gradient(145deg, rgba(255,215,0,0.06), rgba(255,215,0,0.02));
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.coins-balance-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.coins-balance-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--casino-gold);
  line-height: 1.1;
  margin-bottom: 2px;
}
.coins-balance-sub {
  font-size: 11px;
  color: #666;
  margin-bottom: 16px;
}
.coins-earn-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.coins-earn-method {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 11px;
  color: #888;
}
.coins-earn-method-icon {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}
.coins-earn-method-value {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--casino-green);
  margin-top: 2px;
}


/* ============================================================
   44. ADMIN GIVEAWAY MANAGEMENT
   Panel admin pour gérer les concours

   Usage: <div class="admin-giveaway-panel">...</div>
   ============================================================ */
.admin-panel-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.admin-panel-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-panel-title .admin-count {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,215,0,0.1);
  color: var(--casino-gold);
  font-size: 11px;
  font-weight: 700;
}
.admin-giveaway-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.admin-giveaway-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.admin-giveaway-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(255,215,0,0.08);
  flex-shrink: 0;
}
.admin-giveaway-info { flex: 1; }
.admin-giveaway-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.admin-giveaway-meta {
  font-size: 11px;
  color: #666;
  display: flex;
  gap: 12px;
}
.admin-giveaway-actions {
  display: flex;
  gap: 6px;
}
.admin-giveaway-actions .action-btn {
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #888;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-giveaway-actions .action-btn:hover {
  background: rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.2);
  color: var(--casino-gold);
}
.admin-giveaway-actions .action-btn.draw {
  background: rgba(0,255,136,0.08);
  border-color: rgba(0,255,136,0.2);
  color: var(--casino-green);
}
.admin-giveaway-actions .action-btn.delete {
  color: var(--casino-red);
}
.admin-giveaway-actions .action-btn.delete:hover {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.2);
}


/* ============================================================
   45. LEADERBOARD / CLASSEMENT
   Podium + tableau classement

   Usage: <div class="leaderboard">...</div>
   ============================================================ */
.podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px 0;
}
.podium-place {
  text-align: center;
  border-radius: 14px;
  padding: 20px 16px 16px;
  position: relative;
  transition: all 0.3s;
}
.podium-place:hover { transform: translateY(-4px); }
.podium-1 {
  background: linear-gradient(180deg, rgba(255,215,0,0.08), rgba(255,215,0,0.02));
  border: 1px solid rgba(255,215,0,0.2);
  min-width: 140px;
  order: 2;
}
.podium-2 {
  background: linear-gradient(180deg, rgba(192,192,192,0.06), rgba(192,192,192,0.02));
  border: 1px solid rgba(192,192,192,0.15);
  min-width: 120px;
  order: 1;
}
.podium-3 {
  background: linear-gradient(180deg, rgba(205,127,50,0.06), rgba(205,127,50,0.02));
  border: 1px solid rgba(205,127,50,0.15);
  min-width: 120px;
  order: 3;
}
.podium-rank {
  font-size: 28px;
  margin-bottom: 8px;
}
.podium-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 18px;
  font-weight: 800;
}
.podium-1 .podium-avatar { background: linear-gradient(135deg, var(--casino-gold), var(--casino-gold-dark)); color: #000; }
.podium-2 .podium-avatar { background: linear-gradient(135deg, #c0c0c0, #888); color: #000; }
.podium-3 .podium-avatar { background: linear-gradient(135deg, #cd7f32, #8b4513); color: #fff; }
.podium-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.podium-score {
  font-size: 11px;
  color: var(--casino-gold);
  font-weight: 600;
}
.leaderboard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
}
.leaderboard-table th {
  padding: 10px 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  text-align: left;
  font-weight: 600;
}
.leaderboard-table td {
  padding: 12px 14px;
  font-size: 13px;
  background: rgba(255,255,255,0.02);
}
.leaderboard-table tr td:first-child { border-radius: 8px 0 0 8px; }
.leaderboard-table tr td:last-child { border-radius: 0 8px 8px 0; }
.leaderboard-table .rank-col {
  font-weight: 800;
  color: #666;
  width: 40px;
}
.leaderboard-table .score-col {
  color: var(--casino-gold);
  font-weight: 700;
  text-align: right;
}
