/* =============================================
   KompeteCasino — style.css
   Premium Dark Casino Affiliate Design
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #7c3aed;
  --primary-light: #9d5cf7;
  --primary-dark: #5b21b6;
  --primary-glow: rgba(124, 58, 237, 0.4);
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --green: #10b981;
  --green-light: #34d399;
  --green-glow: rgba(16, 185, 129, 0.3);
  --bg-darkest: #060612;
  --bg-dark: #0d0d1c;
  --bg-card: #13132a;
  --bg-card-hover: #1a1a36;
  --bg-elevated: #1e1e3a;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(124, 58, 237, 0.4);
  --text-primary: #f1f0ff;
  --text-secondary: #9896b8;
  --text-muted: #5d5b80;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, #a78bfa 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, var(--green-light) 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(124, 58, 237, 0.08);
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--green-glow);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--green-glow);
  filter: brightness(1.1);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1000;
  box-shadow: 0 4px 20px var(--gold-glow);
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
  filter: brightness(1.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.pulse-btn {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 20px var(--primary-glow);
  }

  50% {
    box-shadow: 0 4px 40px rgba(124, 58, 237, 0.7), 0 0 80px rgba(124, 58, 237, 0.3);
  }
}

/* ===== SHUFFLE LINK ===== */
.shuffle-link {
  color: var(--primary-light);
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shuffle-link:hover {
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--primary-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-main);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--green-light);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6, 6, 18, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  margin-left: 8px;
  font-size: 0.9rem;
  padding: 10px 20px;
}

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

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(6, 6, 18, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 998;
  padding: 24px 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, rgba(124, 58, 237, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    var(--bg-darkest);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

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

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

.hero-particles span:nth-child(1) {
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
  width: 6px;
  height: 6px;
}

.hero-particles span:nth-child(2) {
  left: 25%;
  animation-duration: 12s;
  animation-delay: 2s;
  background: var(--gold);
}

.hero-particles span:nth-child(3) {
  left: 40%;
  animation-duration: 9s;
  animation-delay: 4s;
}

.hero-particles span:nth-child(4) {
  left: 60%;
  animation-duration: 11s;
  animation-delay: 1s;
  background: var(--green-light);
  width: 3px;
  height: 3px;
}

.hero-particles span:nth-child(5) {
  left: 75%;
  animation-duration: 7s;
  animation-delay: 3s;
  background: var(--gold);
  width: 5px;
  height: 5px;
}

.hero-particles span:nth-child(6) {
  left: 88%;
  animation-duration: 10s;
  animation-delay: 0.5s;
}

.hero-particles span:nth-child(7) {
  left: 15%;
  animation-duration: 13s;
  animation-delay: 5s;
  width: 3px;
  height: 3px;
}

.hero-particles span:nth-child(8) {
  left: 55%;
  animation-duration: 8s;
  animation-delay: 6s;
  background: var(--gold);
}

.hero-particles span:nth-child(9) {
  left: 70%;
  animation-duration: 11s;
  animation-delay: 2.5s;
  width: 5px;
  height: 5px;
}

.hero-particles span:nth-child(10) {
  left: 35%;
  animation-duration: 9s;
  animation-delay: 7s;
  background: var(--green-light);
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 120px 20px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-main);
  margin-bottom: 24px;
  animation: fadeSlideDown 0.6s ease forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin-bottom: 24px;
  animation: fadeSlideDown 0.7s ease 0.1s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeSlideDown 0.7s ease 0.2s forwards;
  opacity: 0;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideDown 0.7s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 40px;
  animation: fadeSlideDown 0.7s ease 0.4s forwards;
  opacity: 0;
  backdrop-filter: blur(10px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-value {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-banner-strip {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 24px 20px 0;
  position: relative;
  z-index: 1;
}

.hero-banner {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: rgba(124, 58, 237, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-inner {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  display: inline-block;
  flex-shrink: 0;
}

/* ===== SHUFFLE PRESENTATION ===== */

/* Hero Card */
.shuffle-hero-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.04) 60%, rgba(245, 158, 11, 0.04) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-xl);
  padding: 56px 48px 48px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.shuffle-hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Top branding row */
.shuffle-hero-top {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.shuffle-hero-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.6));
}

.shuffle-hero-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shuffle-hero-name {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}

.shuffle-hero-dot {
  color: var(--primary-light);
}

.shuffle-hero-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Feature 2x2 grid */
.shuffle-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 780px;
}

.shuffle-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}

.shuffle-feat:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.feat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.shuffle-feat h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.shuffle-feat p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA */
.shuffle-hero-cta {
  display: flex;
  justify-content: center;
}

/* Banner row below card */
.shuffle-banners-row {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.shuffle-banner-wide {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.shuffle-banner-wide:hover {
  transform: scale(1.01);
}

/* Keep old classes for responsive fallback */
.shuffle-grid,
.shuffle-info,
.shuffle-logo-wrap,
.shuffle-logo,
.info-cards,
.info-card,
.info-icon,
.shuffle-banners,
.banner-stack,
.banner-main,
.banner-secondary {
  display: none;
}


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

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

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

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

.feature-num {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(124, 58, 237, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== CCTV SECTION ===== */
.cctv-section {
  background: var(--bg-dark);
  position: relative;
}

.cctv-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 0% 50%, rgba(16, 185, 129, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cctv-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cctv-image-wrap {
  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 60px rgba(16, 185, 129, 0.2), 0 0 0 1px rgba(16, 185, 129, 0.15);
  width: 100%;
}

.cctv-main-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.cctv-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.live-badge {
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.cctv-multipliers {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mult-badge {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: var(--green-light);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
}

.mult-badge.gold-badge {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(245, 158, 11, 0);
  }

  50% {
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
  }
}

.cctv-info {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 40px 48px;
  border-top: none;
}

.cctv-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  text-align: center;
}

.cctv-intro {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cctv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.cctv-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}

.cctv-step:hover {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.25);
}

.step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cctv-step h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cctv-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cctv-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  padding: 4px 0;
  border-right: 1px solid rgba(16, 185, 129, 0.1);
}

.spec:last-child {
  border-right: none;
}

.spec-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.spec-val {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.spec-val.gold {
  color: var(--gold);
}

/* CTA centered */
.cctv-info .btn-green {
  display: flex;
  margin: 0 auto;
}

/* ===== DEPOSIT GUIDE ===== */

/* Top highlighted block — achat direct Shuffle */
.deposit-highlight {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  position: relative;
}

.deposit-highlight-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 50px;
}

.deposit-highlight-body {
  display: flex;
  gap: 32px;
  align-items: center;
}

.deposit-highlight-text {
  flex: 1;
}

.deposit-highlight-text h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.deposit-highlight-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.deposit-tips-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deposit-tips-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.deposit-tips-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
}

.deposit-highlight-visual {
  flex-shrink: 0;
}

.dep-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
}

.dep-shuffle-platform span:first-of-type {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
}

.dep-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  justify-content: center;
}

.dep-pay-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-family: var(--font-main);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}


/* Or divider */
.deposit-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}

.deposit-or-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.deposit-or span {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-style: italic;
}

/* Methods grid */
.deposit-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.deposit-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}

.deposit-method-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
}

.dep-method-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dep-platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.dep-binance {
  background: rgba(243, 186, 47, 0.15);
  border: 1px solid rgba(243, 186, 47, 0.4);
  color: #f3ba2f;
}

.dep-phantom {
  background: rgba(171, 100, 255, 0.15);
  border: 1px solid rgba(171, 100, 255, 0.4);
  color: #ab64ff;
}

.dep-method-header h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.dep-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-family: var(--font-main);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--primary-light);
}

.dep-tag-popular {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--gold);
}

.dep-tag-sol {
  background: rgba(171, 100, 255, 0.12);
  border-color: rgba(171, 100, 255, 0.3);
  color: #ab64ff;
}

.dep-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.dep-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.dep-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.dep-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--primary-light);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dep-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.dep-link-btn {
  margin-top: auto;
  text-align: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Crypto list */
.crypto-support {
  margin-top: 8px;
}

.crypto-support h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.crypto-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.crypto-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.crypto-badge:hover {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.07);
}

/* Mobile responsive for deposit section */
@media (max-width: 768px) {
  .deposit-highlight-body {
    flex-direction: column;
    gap: 20px;
  }

  .deposit-highlight-visual {
    width: 100%;
  }

  .dep-platform {
    flex-direction: row;
    justify-content: center;
    padding: 14px 20px;
  }

  .deposit-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== REVIEWS ===== */

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

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

.review-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.review-featured {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.04) 100%);
}

.review-badge-top {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1000;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.review-text::before {
  content: '"';
  color: var(--primary-light);
  font-size: 1.5rem;
  font-family: Georgia;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-score-bar {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.trust-score-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.score-big {
  display: block;
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-stars {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  margin: 4px 0;
}

.score-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== GUIDE ===== */
.guide-section {
  background: var(--bg-dark);
}

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

.guide-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.guide-tab:hover {
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--text-primary);
}

.guide-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.guide-content {
  display: none;
}

.guide-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.guide-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: all var(--transition);
}

.guide-step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.guide-step-num {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(124, 58, 237, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.guide-step-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.guide-step-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.guide-banner-wrap {
  text-align: center;
}

.guide-banner {
  max-width: 100%;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.crypto-support {
  margin-top: 8px;
}

.crypto-support h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.crypto-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.crypto-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.crypto-badge:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

.vpn-intro {
  margin-bottom: 32px;
}

.vpn-info-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.vpn-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.vpn-info-box h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.vpn-info-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.vpn-tips {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 8px;
}

.vpn-tips h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--green-light);
}

.vpn-tips ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vpn-tips li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.vpn-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-light);
}

/* ===== VIP ===== */
.vip-section {
  position: relative;
  overflow: hidden;
}

.vip-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.vip-level {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.vip-level:hover {
  transform: translateY(-6px);
}

.vip-level.silver {
  border-color: rgba(148, 163, 184, 0.3);
}

.vip-level.gold-vip {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.06) 100%);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

.vip-level.platinum {
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.vip-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1000;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Rank badges replacing emoji icons */
.vip-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin: 0 auto 16px;
}

.vip-rank-silver {
  background: rgba(148, 163, 184, 0.15);
  border: 2px solid rgba(148, 163, 184, 0.5);
  color: #94a3b8;
}

.vip-rank-gold {
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid var(--gold);
  color: var(--gold);
}

.vip-rank-platinum {
  background: rgba(124, 58, 237, 0.15);
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
}

.vip-level h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.vip-level p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.vip-level ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip-level li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: left;
  padding-left: 14px;
  position: relative;
}

.vip-level li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
}

.vip-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--transition);
}

.perk:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: var(--bg-card-hover);
}

.perk-icon {
  font-size: 1.3rem;
  color: var(--primary-light);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
  line-height: 1;
}

.perk:hover {
  transform: translateY(-3px);
}


.perk h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.perk p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.vip-cta-block {
  display: flex;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.vip-banner-wrap {
  flex-shrink: 0;
}

.vip-banner {
  height: 400px;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.vip-cta-text {
  flex: 1;
}

.vip-cta-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.vip-cta-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===== BOTTOM BANNER ===== */
.bottom-banner-section {
  padding: 80px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.bottom-banner-section .container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.bottom-cta-center {
  flex: 1;
  text-align: center;
}

.bottom-cta-center h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.bottom-cta-center p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1rem;
}

.bottom-banner-side {
  height: 360px;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  flex-shrink: 0;
}

.bottom-banner-side:hover {
  transform: scale(1.02);
}

.responsible-gaming {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
}

.social-link img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: all var(--transition);
}

.social-link:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.footer-links-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.footer-links-col a:hover {
  color: var(--primary-light);
}

.footer-cta-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-bonus-box {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.footer-bonus-logo {
  height: 36px;
  width: auto;
}

.footer-bonus-text {
  display: flex;
  flex-direction: column;
}

.footer-bonus-val {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
}

.footer-bonus-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
}

/* ===== RESPONSIVE ===== */
/* ===========================
   RESPONSIVE — TABLET (1024px)
=========================== */
@media (max-width: 1024px) {
  .shuffle-grid {
    grid-template-columns: 1fr;
  }

  .shuffle-banners {
    display: none;
  }

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

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

  .vip-perks {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .guide-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   RESPONSIVE — MOBILE (768px)
=========================== */
@media (max-width: 768px) {

  /* Navigation */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* Global sections */
  .section {
    padding: 60px 0;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero */
  .hero-inner {
    padding: 100px 16px 48px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-cta-group {
    gap: 12px;
  }

  .btn-xl {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-stats {
    padding: 16px 12px;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    padding: 8px 12px;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .stat-divider {
    height: 32px;
  }

  /* Trust bar */
  .trust-inner {
    gap: 4px;
  }

  .trust-item {
    border-right: none;
    padding: 6px 12px;
    font-size: 0.82rem;
  }

  /* Section headers */
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .section-sub {
    font-size: 0.92rem;
  }

  /* Shuffle hero card */
  .shuffle-hero-card {
    padding: 36px 20px 32px;
    gap: 28px;
  }

  .shuffle-hero-top {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .shuffle-hero-logo {
    width: 60px;
    height: 60px;
  }

  .shuffle-hero-name {
    font-size: 2.2rem;
  }

  .shuffle-feat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shuffle-feat {
    padding: 14px 16px;
  }

  .shuffle-banners-row {
    display: none;
  }

  /* Features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* CCTV section */
  .cctv-grid {
    gap: 0;
  }

  .cctv-main-img {
    max-height: 220px;
  }

  .cctv-info {
    padding: 28px 20px;
  }

  .cctv-info h3 {
    font-size: 1.2rem;
  }

  .cctv-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cctv-step {
    padding: 14px;
  }

  .cctv-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .spec:nth-child(2) {
    border-right: none;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-score-inner {
    gap: 32px;
  }

  /* Guide tabs */
  .guide-tabs {
    gap: 6px;
  }

  .guide-tab {
    padding: 10px 18px;
    font-size: 0.875rem;
  }

  .guide-steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .guide-step-card {
    padding: 20px 16px;
  }

  .guide-step-num {
    font-size: 2.5rem;
  }

  /* Crypto list */
  .crypto-list {
    gap: 8px;
  }

  .crypto-badge {
    font-size: 0.82rem;
    padding: 6px 14px;
  }

  /* VIP */
  .vip-levels {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vip-perks {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vip-level {
    padding: 28px 20px;
  }

  .vip-cta-block {
    flex-direction: column;
    padding: 28px 20px;
    gap: 28px;
  }

  .vip-banner-wrap {
    display: none;
  }

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

  .vip-cta-text h3 {
    font-size: 1.2rem;
  }

  .btn-gold.btn-xl {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Bottom banner */
  .bottom-banner-section .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .bottom-banner-side {
    display: none;
  }

  .bottom-cta-center h2 {
    font-size: 1.4rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bonus-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-logo {
    height: 36px;
  }

  /* Score bar */
  .trust-score-bar {
    padding: 24px 16px;
  }

  .trust-score-inner {
    flex-direction: column;
    gap: 24px;
  }

  .score-big {
    font-size: 2.4rem;
  }
}

/* ===========================
   RESPONSIVE — SMALL (480px)
=========================== */
@media (max-width: 480px) {

  /* Hero */
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  .hero-banner-strip {
    display: none;
  }

  /* Section badges */
  .section-badge {
    font-size: 0.75rem;
  }

  /* Shuffle card */
  .shuffle-hero-name {
    font-size: 1.8rem;
  }

  .shuffle-feat {
    flex-direction: column;
    gap: 8px;
  }

  /* CCTV multipliers */
  .cctv-multipliers {
    gap: 5px;
    flex-wrap: wrap;
  }

  .mult-badge {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .cctv-specs {
    grid-template-columns: 1fr 1fr;
  }

  /* Avis */
  .review-card {
    padding: 18px 16px;
  }

  /* Guide */
  .guide-tab {
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  /* VIP */
  .vip-rank-badge {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .vip-level h3 {
    font-size: 1.2rem;
  }

  /* Footer bonus */
  .footer-bonus-box {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* Générique boutons */
  .btn-primary,
  .btn-outline,
  .btn-green {
    padding: 13px 22px;
    font-size: 0.95rem;
  }

  /* Bottom CTA */
  .bottom-cta-center .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}