/* ===================================
   CASH GAMING BELGIQUE - MAIN STYLES
   =================================== */

:root {
  --red: #FF2D55;
  --yellow: #FFD700;
  --blue: #00BFFF;
  --green: #00FF88;
  --purple: #9B59B6;
  --orange: #FF6B35;
  --dark: #0A0A1A;
  --dark2: #12122A;
  --dark3: #1A1A3E;
  --white: #FFFFFF;
  --gray: #8892A4;
  --pixel-font: 'Press Start 2P', monospace;
  --body-font: 'Exo 2', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { padding: 80px 0; }
.dark-section { background: var(--dark2); }
.text-center { text-align: center; }

.section-title {
  font-family: var(--pixel-font);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  text-align: center;
  margin-bottom: 50px;
  color: var(--white);
  line-height: 1.6;
  text-shadow: 0 0 30px rgba(0,191,255,0.4);
}
.section-title.white { color: var(--white); }
.section-title .accent { color: var(--yellow); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 0 20px rgba(255,45,85,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pixel-font);
  font-size: 1rem;
  color: var(--white);
}
.logo-icon { font-size: 1.4rem; }
.logo-accent { color: var(--yellow); }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray);
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,45,85,0.15);
  color: var(--red);
}

.btn-call-header {
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 0 15px rgba(255,45,85,0.4);
  animation: pulse-red 2s infinite;
}
.btn-call-header:hover {
  background: #ff4d70;
  transform: scale(1.05);
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 15px rgba(255,45,85,0.4); }
  50% { box-shadow: 0 0 30px rgba(255,45,85,0.8), 0 0 60px rgba(255,45,85,0.3); }
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: var(--dark2);
  border-bottom: 2px solid var(--red);
  z-index: 999;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 8px;
  color: var(--white);
  transition: 0.2s;
}
.mobile-menu a:hover { background: rgba(255,45,85,0.2); }
.mobile-call {
  background: var(--red) !important;
  text-align: center;
  margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #0D0D2B 50%, #1A0A2E 100%);
}

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

.pixel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,191,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.floating-coins { position: absolute; inset: 0; }
.coin {
  position: absolute;
  font-size: 2rem;
  animation: floatCoin 4s ease-in-out infinite;
  opacity: 0.6;
}
.c1 { top: 15%; left: 8%; animation-delay: 0s; }
.c2 { top: 30%; right: 10%; animation-delay: 0.8s; }
.c3 { top: 60%; left: 5%; animation-delay: 1.6s; }
.c4 { top: 20%; right: 25%; animation-delay: 2.4s; }
.c5 { top: 70%; right: 8%; animation-delay: 3.2s; }

@keyframes floatCoin {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--orange));
  color: var(--white);
  font-family: var(--pixel-font);
  font-size: 0.55rem;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from { box-shadow: 0 0 10px rgba(255,45,85,0.5); }
  to { box-shadow: 0 0 25px rgba(255,45,85,0.9), 0 0 50px rgba(255,107,53,0.4); }
}

.hero-title {
  font-family: var(--pixel-font);
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(255,215,0,0.3);
}

.highlight-yellow { color: var(--yellow); position: relative; }
.highlight-green { color: var(--green); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Characters */
.hero-characters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
}
.character {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.character p {
  font-family: var(--pixel-font);
  font-size: 0.4rem;
  color: var(--yellow);
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--yellow);
  white-space: nowrap;
}

/* Mario pixel art */
.char-sprite {
  width: 64px;
  height: 64px;
  image-rendering: pixelated;
  animation: charBounce 0.6s ease-in-out infinite alternate;
}
@keyframes charBounce {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.mario-sprite {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='5' y='1' width='6' height='2' fill='%23c0392b'/%3E%3Crect x='4' y='2' width='8' height='3' fill='%23c0392b'/%3E%3Crect x='4' y='3' width='2' height='1' fill='%23f5cba7'/%3E%3Crect x='5' y='3' width='3' height='1' fill='%23884400'/%3E%3Crect x='3' y='5' width='10' height='4' fill='%23f5cba7'/%3E%3Crect x='2' y='6' width='12' height='3' fill='%23c0392b'/%3E%3Crect x='4' y='6' width='8' height='3' fill='%23e74c3c'/%3E%3Crect x='4' y='9' width='3' height='4' fill='%23034efc'/%3E%3Crect x='9' y='9' width='3' height='4' fill='%23034efc'/%3E%3Crect x='3' y='12' width='4' height='2' fill='%23884400'/%3E%3Crect x='9' y='12' width='4' height='2' fill='%23884400'/%3E%3C/svg%3E") center/contain no-repeat;
}

.sonic-sprite {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='5' y='1' width='7' height='5' fill='%231565C0'/%3E%3Crect x='4' y='2' width='9' height='4' fill='%231E88E5'/%3E%3Crect x='6' y='3' width='2' height='1' fill='white'/%3E%3Crect x='7' y='3' width='1' height='1' fill='%23111'/%3E%3Crect x='10' y='4' width='2' height='1' fill='%23f5cba7'/%3E%3Crect x='3' y='6' width='10' height='4' fill='%231E88E5'/%3E%3Crect x='4' y='6' width='8' height='2' fill='%23f5cba7'/%3E%3Crect x='5' y='10' width='2' height='4' fill='%231565C0'/%3E%3Crect x='9' y='10' width='2' height='4' fill='%231565C0'/%3E%3Crect x='3' y='13' width='4' height='2' fill='%23e65100'/%3E%3Crect x='9' y='13' width='4' height='2' fill='%23e65100'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.btn-mega-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red), #FF6B6B);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: 0 8px 30px rgba(255,45,85,0.5);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  animation: mega-pulse 2.5s infinite;
}
.btn-mega-call.small { font-size: 1.1rem; padding: 14px 24px; }
.btn-mega-call.large { font-size: 1.8rem; padding: 22px 44px; }
.btn-mega-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-mega-call:hover::before { transform: translateX(100%); }
.btn-mega-call:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255,45,85,0.6); }

@keyframes mega-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(255,45,85,0.5); }
  50% { box-shadow: 0 8px 50px rgba(255,45,85,0.9), 0 0 80px rgba(255,45,85,0.3); }
}

.btn-text { display: flex; flex-direction: column; text-align: left; }
.btn-text small { font-size: 0.5em; font-weight: 400; opacity: 0.8; }
.btn-icon { font-size: 1.4em; }
.btn-pulse {
  position: absolute;
  right: -4px; top: -4px;
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  animation: blink 1s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: var(--yellow);
  color: var(--dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s;
  margin: 8px;
}
.btn-outline:hover { background: var(--blue); color: var(--dark); }

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--pixel-font);
  font-size: 1.3rem;
  color: var(--yellow);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-sep { color: var(--gray); font-size: 1.5rem; }

/* ===== URGENCE BANNER ===== */
.urgence-banner {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
  padding: 12px 0;
  font-family: var(--pixel-font);
  font-size: 0.55rem;
  color: var(--white);
  letter-spacing: 1px;
}

/* ===== ARGUMENTS ===== */
.arg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.arg-card {
  padding: 32px;
  border-radius: 16px;
  border: 2px solid;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.arg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0.05;
}
.arg-card:hover { transform: translateY(-8px); }
.arg-card.card-red { border-color: var(--red); }
.arg-card.card-blue { border-color: var(--blue); }
.arg-card.card-yellow { border-color: var(--yellow); }
.arg-card.card-green { border-color: var(--green); }
.arg-card.card-purple { border-color: var(--purple); }
.arg-card.card-orange { border-color: var(--orange); }
.arg-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.arg-card h3 { font-size: 1rem; margin-bottom: 12px; font-weight: 800; }
.arg-card p { color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===== WHAT WE BUY ===== */
.consoles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.console-badge {
  background: linear-gradient(135deg, var(--dark3), #2A2A5E);
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.console-badge:hover {
  background: var(--blue);
  color: var(--dark);
  transform: scale(1.05);
}

.games-examples h3 {
  text-align: center;
  font-family: var(--pixel-font);
  font-size: 0.7rem;
  color: var(--yellow);
  margin-bottom: 20px;
}
.games-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.games-tags span {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
}

.cta-center { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; }

/* ===== PROCESS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  max-width: 220px;
  padding: 30px 20px;
  background: var(--dark2);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s;
}
.step:hover { transform: translateY(-8px); border-color: var(--yellow); }
.step-num {
  font-family: var(--pixel-font);
  font-size: 0.7rem;
  color: var(--yellow);
  margin-bottom: 12px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.step h3 { font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.step-arrow { font-size: 2rem; color: var(--yellow); margin-top: 60px; }

/* ===== ZONES SEO ===== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.zone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--dark3);
  border: 2px solid rgba(255,45,85,0.3);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.zone-card:hover {
  border-color: var(--red);
  background: rgba(255,45,85,0.1);
  transform: scale(1.03);
}
.zone-emoji { font-size: 1.5rem; }
.zone-card strong { font-size: 1rem; font-weight: 800; }
.zone-card small { color: var(--gray); font-size: 0.75rem; }

/* ===== FINAL CTA ===== */
.final-cta-box {
  background: linear-gradient(135deg, #1A0030, #0D0D2B);
  border: 3px solid var(--yellow);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 0 60px rgba(255,215,0,0.15);
}
.pixel-decoration {
  font-family: var(--pixel-font);
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.final-cta-box h2 {
  font-family: var(--pixel-font);
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  margin-bottom: 20px;
  line-height: 1.8;
}
.final-cta-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1.1rem;
}
.open-hours {
  margin-top: 20px !important;
  font-size: 0.9rem !important;
  color: var(--gray) !important;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #060610;
  padding: 60px 0 20px;
  border-top: 2px solid rgba(255,45,85,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col .logo { margin-bottom: 16px; font-family: var(--pixel-font); font-size: 0.8rem; }
.footer-col p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--pixel-font);
  font-size: 0.6rem;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--gray); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col a { color: var(--red); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== SMS WIDGET ===== */
.sms-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.sms-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #00C896);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,255,136,0.4);
  transition: all 0.3s;
  position: relative;
  animation: widget-pulse 3s infinite;
}
.sms-toggle:hover { transform: scale(1.1); }
@keyframes widget-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,255,136,0.4); }
  50% { box-shadow: 0 8px 40px rgba(0,255,136,0.8); }
}

.sms-notif {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--red);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: blink 1s infinite;
}

.sms-popup {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  background: var(--dark2);
  border: 2px solid var(--green);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: slideUp 0.3s ease;
}
.sms-popup.open { display: block; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(90deg, var(--green), #00C896);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.9rem;
}
.sms-header button {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--dark);
  font-weight: 900;
}

.sms-body { padding: 20px; }
.sms-body p { color: rgba(255,255,255,0.8); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.sms-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.sms-steps div { font-size: 0.85rem; font-weight: 600; color: var(--white); }

.btn-sms {
  display: block;
  background: linear-gradient(135deg, var(--green), #00C896);
  color: var(--dark);
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.btn-sms:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(0,255,136,0.4); }

.btn-call-widget {
  display: block;
  background: linear-gradient(135deg, var(--red), #FF6B6B);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-call-widget:hover { transform: scale(1.02); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .btn-call-header { display: none; }
  .burger { display: block; }
  .hero-characters { gap: 20px; }
  .hero-title { font-size: 1rem; }
  .step-arrow { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .sms-popup { width: 280px; right: -10px; }
  .final-cta-box { padding: 40px 20px; }
  .btn-mega-call { font-size: 1.1rem; padding: 14px 20px; }
  .btn-mega-call.large { font-size: 1.3rem; padding: 16px 28px; }
}
