/* ============================================
   PALMSLOTS FR LANDING - STYLES
   ============================================ */

:root {
  --bg: #0b2540;
  --txt: #eaf2fb;
  --muted: #a7b3c6;
  --acc: #f2d75a;
  --neon: #b8ff3b;
  --violet: #a259ff;
  --dark: #08182d;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 70px;
  background: var(--bg);
  color: var(--txt);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover:not(:disabled) {
  opacity: 0.8;
}

a:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
  border-radius: 4px;
}

button {
  font-family: inherit;
  cursor: pointer;
}

button:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 64px 0;
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

.section.alt {
  background: linear-gradient(180deg, rgba(162, 89, 255, 0.08), transparent);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  color: var(--txt);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(8, 24, 45, 0.8);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--txt);
}

.nav__brand img {
  height: 48px;
  width: auto;
}

@media (max-width: 960px) {
  .nav__brand img {
    height: 48px;
    width: auto;
  }
}

.nav__links {
  display: flex;
  gap: 12px;
  margin-left: auto;
  margin-right: 16px;
  flex-wrap: wrap;
}

.nav__links a {
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  color: var(--muted);
}

@media (min-width: 961px) {
  .nav__links {
    gap: 10px;
    margin-right: 20px;
    margin-left: auto;
    min-width: 0;
  }
  
  .nav__links a {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
  
  .nav__row {
    gap: 40px;
  }
}

.nav__links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--txt);
}

.nav__cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (min-width: 961px) {
  .nav__cta {
    gap: 8px;
    margin-right: 0;
  }
  
  .nav__cta .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }
  
  .nav__cta .btn--outline {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

/* Menu mobile - positionné séparément sous le header */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 140px;
  right: 16px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  pointer-events: auto;
}

.mobile-menu-toggle .burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  background: rgba(8, 24, 45, 0.95);
  backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease;
  opacity: 1;
  visibility: visible;
  margin: 0;
  position: relative;
}

.mobile-menu-toggle .burger:hover {
  background: rgba(8, 24, 45, 1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.mobile-menu-toggle .burger span {
  width: 24px;
  height: 2px;
  background: var(--txt);
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
}

.mobile-menu-toggle .burger span:nth-child(1) {
  top: calc(50% - 6px);
}

.mobile-menu-toggle .burger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle .burger span:nth-child(3) {
  top: calc(50% + 6px);
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--txt);
  transition: all 0.3s ease;
  display: block;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

@media (max-width: 960px) {
  .mobile-menu-toggle {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  
  .mobile-menu-toggle .burger {
    display: flex;
    visibility: visible;
    opacity: 1;
  }

  .nav__links {
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    background: rgba(8, 24, 45, 0.95);
    backdrop-filter: saturate(140%) blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    display: none;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    z-index: 998;
    box-sizing: border-box;
  }

  .nav__links[aria-expanded="true"] {
    display: flex;
  }

  .nav__cta {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .nav__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--acc), var(--neon)) !important;
  color: var(--dark) !important;
  box-shadow: 0 0 25px rgba(184, 255, 59, 0.5), 0 0 50px rgba(184, 255, 59, 0.3), 0 0 75px rgba(184, 255, 59, 0.15) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.btn--primary:hover:not(:disabled),
.btn--primary:not(.is-disabled):not(:disabled),
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(184, 255, 59, 0.7), 0 0 70px rgba(184, 255, 59, 0.4), 0 0 100px rgba(184, 255, 59, 0.2) !important;
}

.btn--primary:not(.is-disabled),
.btn.js-cta.btn--primary {
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  background: linear-gradient(135deg, var(--acc), var(--neon)) !important;
  box-shadow: 0 0 25px rgba(184, 255, 59, 0.5), 0 0 50px rgba(184, 255, 59, 0.3), 0 0 75px rgba(184, 255, 59, 0.15) !important;
}

.btn--primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--txt);
}

.btn--outline:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
}

.btn.js-cta,
.btn.js-cta:not(.is-disabled),
a.btn.js-cta,
a.btn.js-cta.btn--primary {
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  background: linear-gradient(135deg, var(--acc), var(--neon)) !important;
  color: var(--dark) !important;
  box-shadow: 0 0 25px rgba(184, 255, 59, 0.5), 0 0 50px rgba(184, 255, 59, 0.3), 0 0 75px rgba(184, 255, 59, 0.15) !important;
}

.btn.js-cta:hover,
a.btn.js-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(184, 255, 59, 0.7), 0 0 70px rgba(184, 255, 59, 0.4), 0 0 100px rgba(184, 255, 59, 0.2) !important;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url(assets/img/back1.webp) center/cover no-repeat;
  filter: saturate(110%);
  z-index: -1;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 120% at 50% 0%,
    rgba(162, 89, 255, 0.35) 0,
    rgba(11, 37, 64, 0.85) 55%,
    rgba(11, 37, 64, 1) 100%
  );
  z-index: -1;
}

.hero__content {
  padding: 120px 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--acc);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  color: var(--txt);
}

.hero .lead {
  font-size: clamp(18px, 2.8vw, 28px);
  color: var(--acc);
  font-weight: 700;
  margin-bottom: 32px;
}

.hero .lead strong {
  color: var(--neon);
  text-shadow: 0 0 15px rgba(184, 255, 59, 0.6);
}

.cta-row {
  margin-top: 32px;
}


/* ============================================
   CARDS
   ============================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: all 0.3s ease;
  position: relative;
}

.js-card-link {
  cursor: pointer;
}

.js-card-link:hover {
  transform: translateY(-3px) scale(1.01);
}

.card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: none;
}

.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: contain;
  object-position: center;
  display: block;
  border: none;
  outline: none;
}

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--violet), var(--neon));
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card__badge--winner {
  background: linear-gradient(135deg, var(--acc), var(--neon));
}

.card__badge--jackpot {
  background: linear-gradient(135deg, var(--violet), #ff6b9d);
  animation: pulse 2s ease-in-out infinite;
}

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

.card__body {
  padding: 16px;
}

.card__body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--txt);
}

.card__body .muted {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.card__body .btn {
  width: 100%;
  margin-top: 8px;
}

.card--winner {
  border: none;
}

.card--jackpot {
  border: none;
}

/* ============================================
   CAROUSEL
   ============================================ */

.carousel {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel .card {
  flex: 0 0 auto;
  min-width: 0;
}

@media (max-width: 640px) {
  .carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .carousel::-webkit-scrollbar {
    display: none;
  }
  
  .carousel .card {
    scroll-snap-align: start;
    min-width: calc(100% - 20px);
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .carousel .card {
    min-width: calc(50% - 10px);
  }
}

@media (min-width: 961px) and (max-width: 1280px) {
  .carousel .card {
    min-width: calc(33.333% - 14px);
  }
}

@media (min-width: 1281px) {
  .carousel .card {
    min-width: calc(25% - 15px);
  }
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .carousel-controls {
    display: none;
  }
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--txt);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.carousel-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ============================================
   SPORTS GRID
   ============================================ */

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.sport {
  position: relative;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: 4/3;
  background: transparent;
  border: none;
  transition: all 0.4s ease;
  will-change: transform;
}

.sport.js-card-link {
  cursor: pointer;
}

.sport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
  border: none;
  outline: none;
}

.sport:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(184, 255, 59, 0.3);
}

.sport:hover img {
  transform: scale(1.05);
}

.sport__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 37, 64, 0.95) 0,
    rgba(11, 37, 64, 0.7) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sport:hover .sport__overlay {
  opacity: 1;
}

.sport__overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(184, 255, 59, 0.5);
}

/* ============================================
   JACKPOT SECTION
   ============================================ */

.jackpot-section {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
}

.jackpot-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9) saturate(1.1);
  z-index: -1;
}

.jackpot-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 37, 64, 0.3) 0%,
    rgba(11, 37, 64, 0.6) 50%,
    rgba(11, 37, 64, 0.8) 100%
  );
}

.jackpot-container {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.jackpot-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.jackpot-label {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--txt);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.jackpot-amount {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--txt);
  text-shadow: 0 0 20px rgba(184, 255, 59, 0.6), 0 0 40px rgba(184, 255, 59, 0.4), 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
}

.btn--jackpot {
  background: linear-gradient(135deg, #f2d75a, #ffd700) !important;
  color: var(--dark) !important;
  font-size: clamp(18px, 2.5vw, 24px) !important;
  font-weight: 700 !important;
  padding: 1rem 3rem !important;
  border-radius: 12px !important;
  box-shadow: 0 0 30px rgba(242, 215, 90, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn--jackpot:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 40px rgba(242, 215, 90, 0.7), 0 6px 30px rgba(0, 0, 0, 0.4) !important;
}

.btn--jackpot:active {
  transform: translateY(-1px) scale(1.02);
}

@media (max-width: 640px) {
  .jackpot-section {
    min-height: 400px;
    padding: 60px 0;
  }
  
  .jackpot-display {
    gap: 20px;
  }
}

/* ============================================
   MINI SLOT GAME
   ============================================ */

.mini-slot-section {
  background: linear-gradient(180deg, rgba(11, 37, 64, 0.95), rgba(8, 24, 45, 0.98));
  padding: 20px 0 60px 0;
  margin-top: -40px;
}

.slot-machine {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(184, 255, 59, 0.1);
  backdrop-filter: blur(10px);
}

.slot-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 20px;
  border: 2px solid rgba(184, 255, 59, 0.2);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.slot-reel {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(184, 255, 59, 0.1), rgba(162, 89, 255, 0.1));
  border-radius: 12px;
  border: 2px solid rgba(184, 255, 59, 0.3);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  clip-path: inset(0 0 0 0);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.slot-reel .slot-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.slot-item {
  height: 200px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 800;
  color: var(--neon);
  text-shadow: 0 0 20px rgba(184, 255, 59, 0.8), 0 0 40px rgba(184, 255, 59, 0.5);
  border-bottom: 1px solid rgba(184, 255, 59, 0.2);
  flex-shrink: 0;
  box-sizing: border-box;
}

.slot-item:nth-child(odd) {
  background: rgba(184, 255, 59, 0.05);
}

.slot-icon-palm {
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-icon-palm svg {
  width: 64px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(184, 255, 59, 0.8));
}

.slot-reel.spinning {
  animation: none;
}

.slot-reel.spinning .slot-item {
  text-shadow: 0 0 30px rgba(184, 255, 59, 1), 0 0 60px rgba(184, 255, 59, 0.7);
  filter: brightness(1.2);
}

.slot-reel.win {
  animation: winPulse 0.6s ease;
}

@keyframes winPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: inset 0 0 40px rgba(184, 255, 59, 0.8), 0 0 30px rgba(184, 255, 59, 0.6);
  }
}

.slot-result {
  text-align: center;
  min-height: 40px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(184, 255, 59, 0.6);
}

.slot-result.win {
  animation: winText 0.5s ease;
  color: var(--neon);
  font-size: 1.5rem;
}

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

.btn--slot {
  width: 100%;
  background: linear-gradient(135deg, var(--acc), var(--neon)) !important;
  color: var(--dark) !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  padding: 1.2rem 2rem !important;
  border-radius: 16px !important;
  box-shadow: 0 0 30px rgba(184, 255, 59, 0.6), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border: none;
}

.btn--slot:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(184, 255, 59, 0.8), 0 6px 30px rgba(0, 0, 0, 0.4) !important;
}

.btn--slot:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.btn--slot:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   BONUS NOTIFICATION
   ============================================ */

.bonus-notification {
  margin-bottom: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(184, 255, 59, 0.15), rgba(162, 89, 255, 0.15));
  border: 2px solid rgba(184, 255, 59, 0.5);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(184, 255, 59, 0.4), inset 0 0 30px rgba(184, 255, 59, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.8) translateY(-20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bonus-notification--show {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: bonusPulse 2s ease-in-out infinite;
}

@keyframes bonusPulse {
  0%, 100% {
    box-shadow: 0 0 40px rgba(184, 255, 59, 0.4), inset 0 0 30px rgba(184, 255, 59, 0.1);
  }
  50% {
    box-shadow: 0 0 60px rgba(184, 255, 59, 0.6), inset 0 0 40px rgba(184, 255, 59, 0.2);
  }
}

.bonus-notification__content {
  text-align: center;
}

.bonus-notification__icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: bounce 1s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(184, 255, 59, 0.8));
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bonus-notification__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon);
  text-shadow: 0 0 20px rgba(184, 255, 59, 0.8), 0 0 40px rgba(184, 255, 59, 0.5);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bonus-notification__text {
  font-size: 1.2rem;
  color: var(--txt);
  margin: 0;
  line-height: 1.6;
}

.bonus-notification__text strong {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(184, 255, 59, 0.6);
  font-size: 1.4rem;
}

@media (max-width: 640px) {
  .bonus-notification {
    padding: 20px 16px;
  }
  
  .bonus-notification__icon {
    font-size: 48px;
    margin-bottom: 12px;
  }
  
  .bonus-notification__title {
    font-size: 1.5rem;
  }
  
  .bonus-notification__text {
    font-size: 1rem;
  }
  
  .bonus-notification__text strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .slot-machine {
    padding: 30px 20px;
  }
  
  .slot-display {
    gap: 12px;
    padding: 15px;
  }
  
  .slot-reel {
    height: 160px;
  }
  
  .slot-item {
    height: 160px;
    font-size: 48px;
  }
  
  .slot-icon-palm svg {
    width: 48px;
    height: 48px;
  }
}

/* ============================================
   PROMO GRID
   ============================================ */

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.promo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.promo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.promo-card__body {
  padding: 20px;
}

.promo-card__body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--txt);
}

/* ============================================
   SEO ZONE
   ============================================ */

.seo-wrap {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28));
  padding: 80px 0;
}

.seo-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.toc {
  position: sticky;
  top: 80px;
  height: max-content;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
}

.toc strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--acc);
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin-bottom: 8px;
}

.toc a {
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.2s ease;
}

.toc a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--txt);
}

.toc li.h2 a {
  font-weight: 600;
  padding-left: 10px;
}

.toc li.h3 a {
  padding-left: 24px;
  font-size: 0.85rem;
}

.toc li.h4 a {
  padding-left: 38px;
  font-size: 0.8rem;
}

.seo {
  max-width: 880px;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.seo h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--txt);
  scroll-margin-top: 100px;
}

.seo h2:first-child {
  margin-top: 0;
}

.seo h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--acc);
  scroll-margin-top: 100px;
}

.seo h4 {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--muted);
  scroll-margin-top: 100px;
}

.seo p {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--txt);
}

.seo .placeholder {
  color: var(--muted);
  font-style: italic;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--violet);
  border-radius: 4px;
}

.seo ul,
.seo ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.seo li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--txt);
}

.seo ul li::marker {
  color: var(--neon);
}

.seo ol li::marker {
  color: var(--acc);
  font-weight: 600;
}

.seo table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
}

.seo table thead {
  background: rgba(162, 89, 255, 0.2);
}

.seo table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--txt);
  border-bottom: 2px solid var(--border-light);
}

.seo table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--txt);
}

.seo table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.seo table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.seo blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid var(--violet);
  background: rgba(162, 89, 255, 0.1);
  border-radius: 4px;
  font-style: italic;
  color: var(--muted);
}

.seo hr.soft {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
  margin: 32px 0;
}

.seo details {
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.seo summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--acc);
  user-select: none;
  transition: background 0.2s ease;
}

.seo summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.seo details[open] summary {
  border-bottom: 1px solid var(--border);
}

.seo details div {
  padding: 20px;
  color: var(--txt);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    margin-bottom: 32px;
  }

  .seo {
    padding: 24px;
  }

  .seo table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: rgba(8, 24, 45, 0.8);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}


.foot-links {
  text-align: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.foot-links a:hover {
  color: var(--acc);
}

.footer .muted {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}


/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

[data-observe] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   UTILITIES
   ============================================ */

.muted {
  color: var(--muted);
}

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

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

@media (max-width: 1280px) {
  .container {
    width: min(1200px, 94%);
  }
}

@media (max-width: 960px) {
  .section {
    padding: 48px 0;
  }

  .cards {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
  }

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

  .promo-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 40px 0;
  }

  .hero__content {
    padding: 80px 0 2px;
  }
  
  .hero {
    padding-bottom: 300px;
  }
  
  .mini-slot-section {
    padding: 10px 0 40px 0;
    margin-top: -300px;
  }

  .cards {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

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

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */

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

  .hero__bg {
    transform: none !important;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* ============================================
   SUPPORT CHAT
   ============================================ */

.support-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
}

.support-chat__toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--neon));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184, 255, 59, 0.5), 0 0 30px rgba(184, 255, 59, 0.3);
  transition: all 0.3s ease;
  position: relative;
  color: var(--dark);
}

.support-chat__toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(184, 255, 59, 0.7), 0 0 40px rgba(184, 255, 59, 0.5);
}

.support-chat__toggle svg {
  width: 28px;
  height: 28px;
}

.support-chat__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  animation: pulse 2s ease-in-out infinite;
}

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

.support-chat__window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 500px;
  max-height: calc(100vh - 120px);
  background: rgba(8, 24, 45, 0.98);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(184, 255, 59, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(184, 255, 59, 0.2);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.support-chat__window--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.support-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(184, 255, 59, 0.2);
  background: rgba(184, 255, 59, 0.05);
  border-radius: 16px 16px 0 0;
}

.support-chat__header-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--txt);
  font-weight: 600;
}

.support-chat__status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px rgba(184, 255, 59, 0.8);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.support-chat__close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.support-chat__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--txt);
}

.support-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-chat__message {
  display: flex;
  gap: 12px;
  animation: messageSlide 0.4s ease-out;
}

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

.support-chat__message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--neon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.support-chat__message-content {
  flex: 1;
  min-width: 0;
}

.support-chat__message-text {
  background: rgba(184, 255, 59, 0.1);
  border: 1px solid rgba(184, 255, 59, 0.2);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--txt);
  line-height: 1.5;
  word-wrap: break-word;
}

.support-chat__message-text strong {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(184, 255, 59, 0.6);
}

.support-chat__message-time {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  padding-left: 4px;
}

.support-chat__footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(184, 255, 59, 0.2);
  background: rgba(184, 255, 59, 0.05);
  border-radius: 0 0 16px 16px;
}

.btn--chat-bonus {
  width: 100%;
  font-size: 1rem !important;
  padding: 0.9rem 1.5rem !important;
  box-shadow: 0 0 30px rgba(184, 255, 59, 0.6), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 640px) {
  .support-chat {
    bottom: 16px;
    right: 16px;
  }
  
  .support-chat__toggle {
    width: 56px;
    height: 56px;
  }
  
  .support-chat__toggle svg {
    width: 24px;
    height: 24px;
  }
  
  .support-chat__window {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 80px;
    height: calc(100vh - 200px);
    max-height: 500px;
  }
}

