/* ===== Variables & Reset ===== */
:root {
  --bg-deep: #0a0612;
  --bg-card: rgba(18, 10, 32, 0.75);
  --bg-glass: rgba(30, 15, 55, 0.45);
  --purple-900: #1a0a2e;
  --purple-700: #5b21b6;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --accent: #a855f7;
  --accent-glow: rgba(168, 85, 247, 0.4);
  --text: #f1f0f5;
  --text-muted: #9b8fb8;
  --border: rgba(139, 92, 246, 0.2);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(88, 28, 135, 0.25);
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(88, 28, 135, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.accent { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-700), var(--accent));
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }

/* ===== Navbar ===== */
.navbar {
  --nav-h: 76px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  --nav-h: 62px;
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--purple-700), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover { color: var(--text); background: var(--bg-glass); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar__burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Dropdowns */
.dropdown { position: relative; }

.dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown__trigger:hover,
.dropdown.open .dropdown__trigger {
  color: var(--text);
  background: var(--bg-glass);
}

.dropdown.open .chevron { transform: rotate(180deg); }
.chevron { transition: transform 0.3s ease; }

.dropdown__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.dropdown:not(.dropdown--mega).open .dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown--mega.open .dropdown__panel--mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown__panel--about {
  min-width: 480px;
  padding: 0.65rem;
  left: 0;
  transform: translateY(8px);
}

.dropdown.open .dropdown__panel--about {
  transform: translateY(0);
}

.about-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.25rem;
}

.about-menu__col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.about-menu__col + .about-menu__col {
  border-left: 1px solid var(--border);
  padding-left: 1.25rem;
}

.dropdown__panel--about a.about-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--text-muted);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.about-link__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.12);
  border-radius: 8px;
  color: var(--purple-400);
  transition: var(--transition);
}

.dropdown__panel--about a.about-link:hover {
  background: rgba(139, 92, 246, 0.15);
  color: var(--text);
}

.dropdown__panel--about a.about-link:hover .about-link__icon {
  background: rgba(168, 85, 247, 0.25);
  color: var(--accent);
}

/* Mega menu jeux */
.dropdown--mega { position: static; }

.dropdown--mega .dropdown__panel--mega {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border);
  transform: translateY(-8px);
  background: rgba(10, 6, 18, 0.97);
  backdrop-filter: blur(24px);
}

.dropdown--mega.open .dropdown__panel--mega {
  transform: translateY(0);
}

.mega-menu__inner {
  padding: 1.75rem 0 2rem;
}

.mega-menu__title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-400);
  margin-bottom: 1.25rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.game-card {
  position: relative;
  height: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s ease,
              border-color 0.35s ease;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--game-bg) center/cover no-repeat;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 6, 18, 0.92) 0%,
    rgba(10, 6, 18, 0.55) 45%,
    rgba(10, 6, 18, 0.25) 100%
  );
  transition: background 0.4s ease;
}

.game-card__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(168, 85, 247, 0.35));
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.game-card__name {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
}

.game-card:hover {
  border-color: rgba(168, 85, 247, 0.7);
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(88, 28, 135, 0.45),
    0 0 0 1px rgba(168, 85, 247, 0.3),
    inset 0 0 30px rgba(168, 85, 247, 0.08);
}

.game-card:hover::before {
  transform: scale(1.12);
}

.game-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(10, 6, 18, 0.88) 0%,
    rgba(46, 16, 84, 0.5) 50%,
    rgba(10, 6, 18, 0.2) 100%
  );
}

.game-card:hover .game-card__glow {
  opacity: 1;
}

.nav-cta { margin-left: 0.5rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542751371-ad0f6b5f0a51?w=1920&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 6, 18, 0.92) 0%,
    rgba(26, 10, 46, 0.85) 50%,
    rgba(10, 6, 18, 0.9) 100%
  );
  z-index: 1;
}

.hero__glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  width: 100%;
  max-width: 540px;
  min-width: 0;
}

.hero__visual {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__image-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at 60% 40%, var(--accent-glow), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--purple-300);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ===== Carousel base ===== */
.carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel__viewport {
  flex: 1;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel__arrow:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: var(--accent);
  transform: scale(1.05);
}

.carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ===== Why carousel ===== */
.why-carousel .carousel__viewport { padding: 2rem 0; }

.why-track { gap: 1.25rem; }

.why-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  min-width: 0;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.6s ease,
              border-color 0.6s ease,
              opacity 0.6s ease;
  transform: scale(0.92);
  opacity: 0.7;
}

.why-card.is-center {
  transform: scale(1.05) translateY(-12px);
  opacity: 1;
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.why-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.4), rgba(168, 85, 247, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== Offers ===== */
.offers { background: linear-gradient(180deg, transparent, rgba(26, 10, 46, 0.3) 50%, transparent); }

.offers__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.duration-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--bg-glass);
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.duration-tab {
  padding: 0.6rem 1.2rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.duration-tab .discount {
  font-size: 0.75rem;
  color: #34d399;
  margin-left: 0.25rem;
}

.duration-tab.active,
.duration-tab:hover {
  background: linear-gradient(135deg, var(--purple-700), var(--accent));
  color: white;
}

.ultra-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  position: relative;
  padding: 0.65rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  transition: var(--transition);
}

.ultra-toggle input { display: none; }

.ultra-toggle__glow {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f59e0b, #ef4444, #a855f7);
  opacity: 0;
  filter: blur(12px);
  z-index: 0;
  transition: opacity 0.4s ease;
}

.ultra-toggle.is-active .ultra-toggle__glow {
  opacity: 0.55;
  animation: ultra-pulse 2.5s ease-in-out infinite;
}

.ultra-toggle.is-active {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(168, 85, 247, 0.15));
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.ultra-toggle__slider {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 30px;
  background: rgba(30, 15, 55, 0.8);
  border: 1px solid var(--border);
  border-radius: 50px;
  flex-shrink: 0;
  transition: var(--transition);
}

.ultra-toggle__bolt {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease;
}

.ultra-toggle__bolt svg {
  width: 12px;
  height: 12px;
}

.ultra-toggle.is-active .ultra-toggle__slider {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-color: transparent;
}

.ultra-toggle.is-active .ultra-toggle__bolt {
  left: 29px;
  background: white;
  color: #f59e0b;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.ultra-toggle__label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ultra-toggle__title {
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.ultra-toggle__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.ultra-toggle.is-active .ultra-toggle__title {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ultra-toggle.is-active .ultra-toggle__sub {
  color: var(--purple-300);
}

@keyframes ultra-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

.offers--ultra {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(245, 158, 11, 0.04) 30%,
    rgba(168, 85, 247, 0.08) 70%,
    transparent
  ) !important;
}

.offer-card--ultra {
  border-color: rgba(245, 158, 11, 0.25);
}

.offer-card--ultra::before {
  background: linear-gradient(90deg, #f59e0b, #ef4444, #a855f7);
}

.offer-card--ultra .offer-card__cpu {
  color: #fbbf24;
}

.offer-card__total {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.offers-track { gap: 1.25rem; }

.offer-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  min-width: 0;
  padding: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-700), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.offer-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-card:hover::before { opacity: 1; }

.offer-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.offer-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  background: var(--accent);
  border-radius: 6px;
  color: white;
}

.offer-card__cpu {
  font-size: 0.8rem;
  color: var(--purple-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.offer-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.offer-card__specs {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offer-card__specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.offer-card__specs li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.offer-card__price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.offer-card__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.offer-card__price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 1rem;
}

.offer-card .btn { width: 100%; }

/* ===== Panel ===== */
.panel__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.panel__desc {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
  font-size: 1.05rem;
}

.panel__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.panel__feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.35), rgba(168, 85, 247, 0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
}

.panel__visual {
  display: flex;
  justify-content: flex-end;
}

.panel__image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  background: var(--purple-900);
}

.panel__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.panel__image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 50%, var(--accent-glow), transparent 50%);
  pointer-events: none;
}

/* ===== Reviews ===== */
.reviews-carousel {
  max-width: 700px;
  margin-inline: auto;
  position: relative;
}

.reviews__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.reviews__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  flex: 0 0 100%;
  padding: 2.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.review-slide__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.review-slide__stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.review-slide__text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-slide__name {
  font-weight: 700;
  font-size: 1rem;
}

.review-slide__role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.reviews__dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.reviews-carousel .carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.reviews-carousel .carousel__arrow--prev { left: -60px; }
.reviews-carousel .carousel__arrow--next { right: -60px; }

/* ===== Footer ===== */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(10, 6, 18, 0.6);
  z-index: 1;
}

.footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 1.25rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer__col ul li { margin-bottom: 0.5rem; }

.footer__col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__legal-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer__legal-links a:hover { color: var(--accent); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__content {
    justify-self: center;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero__desc { margin-inline: auto; }
  .hero__visual {
    order: -1;
    justify-self: center;
    max-width: 400px;
  }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .game-card { height: 120px; }
  .why-card { flex: 0 0 calc(50% - 0.65rem); }
  .offer-card { flex: 0 0 calc(50% - 0.65rem); }
  .panel__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .reviews-carousel .carousel__arrow--prev { left: 0; }
  .reviews-carousel .carousel__arrow--next { right: 0; }
}

@media (max-width: 768px) {
  .navbar__burger { display: flex; }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    background: rgba(10, 6, 18, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transition: right 0.4s ease;
    gap: 0.25rem;
    overflow-y: auto;
  }

  .navbar__nav.open { right: 0; }

  .dropdown__panel,
  .dropdown--mega .dropdown__panel--mega {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(30, 15, 55, 0.5);
    margin-top: 0.25rem;
    width: 100% !important;
    top: auto;
    left: auto;
    right: auto;
  }

  .dropdown.open .dropdown__panel { display: block; }

  .dropdown__panel--about { min-width: 0; width: 100%; }

  .about-menu {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .about-menu__col + .about-menu__col {
    border-left: none;
    padding-left: 0;
    padding-top: 0.5rem;
    margin-top: 0.35rem;
    border-top: 1px solid var(--border);
  }

  .mega-menu__inner { padding: 1rem 0; }

  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .game-card { height: 110px; }

  .nav-cta { margin-left: 0; margin-top: 1rem; }

  .why-card,
  .offer-card { flex: 0 0 100%; }

  .carousel__arrow { width: 40px; height: 40px; }

  .offers__controls { flex-direction: column; }

  .footer__grid { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .game-card { height: 100px; font-size: 0.95rem; }
  .ultra-toggle { flex-wrap: wrap; justify-content: center; text-align: center; }
  .duration-tabs { width: 100%; justify-content: center; }
  .hero__title { font-size: 2rem; }
}
