/* ==========================================================================
   FLOUZE DESIGN SYSTEM & STYLE SHEET
   Premium, Dark Gaming Responsive CSS for Flouze Website
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-main: #0a051a;
  /* Fond sombre ultra profond violet */
  --bg-card: #1a0b3b;
  /* Fond des cartes et sections surélevées */
  --bg-card-hover: #261254;
  /* Hover sur les éléments interactifs */

  --primary: #8b5cf6;
  /* Violet néon dominant */
  --primary-hover: #7c3aed;
  --primary-glow: rgba(139, 92, 246, 0.45);
  --primary-rgb: 139, 92, 246;

  --accent: #d946ef;
  /* Rose/Magenta néon secondaire */
  --accent-glow: rgba(217, 70, 239, 0.3);
  --accent-rgb: 217, 70, 239;

  --text-main: #f8fafc;
  /* Texte principal (Blanc cassé) */
  --text-muted: #94a3b8;
  /* Texte secondaire */

  --border-glow: rgba(139, 92, 246, 0.25);
  --border-flat: #2d185e;

  /* Fonts & Radius */
  --font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 9999px;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.25);
  --shadow-cta: 0 12px 32px rgba(139, 92, 246, 0.4);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: transparent;
}

body.lock-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed !important;
  width: 100% !important;
}

.main-content-wrapper {
  position: relative;
  z-index: 1;
}

/* Background gradient & glows */
.body-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% -20%, #1e1045 0%, var(--bg-main) 70%);
  pointer-events: none;
}

.body-bg-container::before,
.body-bg-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.body-bg-container::before {
  background: radial-gradient(circle at 95% 15%, rgba(217, 70, 239, 0.15) 0%, transparent 50%);
}

.body-bg-container::after {
  background: radial-gradient(circle at 5% 55%, rgba(139, 92, 246, 0.12) 0%, transparent 45%);
}

/* Typography styles */
h1,
h2,
h3,
h4 {
  font-family: var(--font-family);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-main);
}

p {
  line-height: 1.6;
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* Layout Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 5, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-flat);
  padding: 0.8rem 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.brand-name {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Glassmorphic Lang Dropdown */
.lang-selector-wrapper {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(26, 11, 59, 0.8);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.lang-btn::after {
  content: " ▾";
  font-size: 0.8rem;
  margin-top: 1px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(26, 11, 59, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
  transition: var(--transition);
  width: 100%;
}

.lang-option:hover {
  background: rgba(139, 92, 246, 0.15);
  color: var(--text-main);
}

.lang-option.active {
  background: var(--primary);
  color: #FFF;
}

/* ==========================================================================
   BUTTONS & APP STORE CTA
   ========================================================================== */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #FFF;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 70, 239, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-appstore svg {
  width: 24px;
  height: 24px;
}

.btn-appstore-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-appstore-text span:first-child {
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.btn-appstore-text span:last-child {
  font-size: 1.05rem;
  font-weight: 700;
}

/* Floating CTA button */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 99;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}

.floating-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cta .btn-appstore {
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
}

.floating-cta .btn-appstore:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 5rem 0 2rem 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 11, 59, 0.8);
  border: 1px solid var(--border-flat);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  animation: float 4s ease-in-out infinite;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--text-main);
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.05;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.hero-cta {
  margin-bottom: 4rem;
}

.hero-mockup-wrapper {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}

.hero-mockup {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(139, 92, 246, 0.15);
  transform: rotateX(5deg);
  transition: var(--transition-bounce);
}

.hero-mockup:hover {
  transform: rotateX(0deg) scale(1.02);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  padding: 4rem 0;
  background: rgba(26, 11, 59, 0.4);
  border-bottom: 1px solid var(--border-flat);
  border-top: 1px solid var(--border-flat);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-flat);
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-family);
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   HOW IT WORKS (COMMENT CA MARCHE)
   ========================================================================== */
.how-it-works-section {
  padding: 6rem 0;
  background: rgba(10, 5, 26, 0.2);
  border-bottom: 1px solid var(--border-flat);
}

.how-it-works-section .section-badge-wrapper {
  margin-bottom: 2.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  background: var(--bg-card-hover);
}

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

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SIMULATOR CARD (BET SIMULATOR)
   ========================================================================== */
.simulator-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-flat);
}

.bet-simulator-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(139, 92, 246, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.bet-simulator-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.bet-simulator-card h3 {
  font-size: 1.7rem;
  color: var(--text-main);
  z-index: 1;
}

.sim-match-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1;
}

.match-choice {
  padding: 1rem;
  background: rgba(10, 5, 26, 0.6);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.match-choice:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--primary);
  color: var(--text-main);
}

.match-choice.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
}

.sim-stake-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  z-index: 1;
}

.sim-stake-container label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
}

.sim-stake-container label span {
  color: var(--accent);
  font-weight: 800;
}

.sim-stake-container input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--border-flat);
  outline: none;
}

.sim-stake-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent);
  transition: transform 0.1s ease;
}

.sim-stake-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.sim-result-box {
  background: rgba(10, 5, 26, 0.7);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.result-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.result-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(217, 70, 239, 0.4);
}

/* ==========================================================================
   FEATURES GRID (FONCTIONNALITES)
   ========================================================================== */
.features-section {
  padding: 6rem 0;
  background: rgba(26, 11, 59, 0.2);
  border-bottom: 1px solid var(--border-flat);
}

.section-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-glow);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
  color: var(--text-main);
}

.section-subtitle {
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.features-grid-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  background: var(--bg-card-hover);
}

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-glow);
}

.feature-box:nth-child(even) .feature-icon-wrapper {
  background: rgba(217, 70, 239, 0.15);
  color: var(--accent);
  border-color: var(--accent-glow);
}

.feature-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features-center-phone {
  text-align: center;
  position: relative;
  transition: var(--transition-bounce);
}

.features-center-phone:hover {
  transform: translateY(-8px);
}

.features-phone-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(139, 92, 246, 0.2);
  animation: float-subtle 3.5s ease-in-out infinite;
}

@keyframes float-subtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ==========================================================================
   SOCIAL PROOF (TEMOIGNAGES)
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-flat);
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.5rem 2rem 0.5rem;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 350px;
  background: var(--bg-card);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  background: var(--bg-card-hover);
}

.stars {
  display: flex;
  gap: 0.2rem;
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-divider {
  height: 1px;
  background: var(--border-flat);
  margin-bottom: 1.25rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-flat);
}

.user-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.user-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

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

/* ==========================================================================
   FAQ SECTION (ACCORDEON)
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: rgba(10, 5, 26, 0.2);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
}

.faq-chevron {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 5, 26, 0.4);
}

.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: left;
}

/* Active accordion styles */
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-answer {
  border-top: 1px solid var(--border-flat);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: rgba(10, 5, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-flat);
  padding: 4rem 0 6rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
}

.footer-name {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--text-main);
}

.footer-download {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-divider {
  height: 1px;
  background: var(--border-flat);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

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

/* ==========================================================================
   LEGAL PAGES STYLING (CGU, PRIVACY)
   ========================================================================== */
.legal-page-body {
  background: var(--bg-main);
  color: var(--text-main);
}

.legal-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-flat);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.legal-back-btn:hover {
  color: var(--primary);
  transform: translateX(-3px);
}

.legal-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
  color: var(--text-main);
}

.legal-content p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   ANIMATIONS & FLOAT EFFECT
   ========================================================================== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Breakpoint (max-width: 992px) */
@media (max-width: 992px) {
  .features-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .features-center-phone {
    grid-column: span 2;
    order: -1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-download {
    grid-column: span 1;
    align-items: flex-start;
  }
}

/* Mobile Breakpoint (max-width: 768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  #header-download-btn {
    display: none !important;
  }

  .hero-section {
    padding: 3rem 0 1rem 0;
  }

  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid-layout {
    grid-template-columns: 1fr;
  }

  .features-center-phone {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo-row {
    justify-content: center;
  }

  .footer-download {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .legal-container {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }

  .lang-dropdown {
    grid-template-columns: 1fr;
    width: 150px;
  }

  .floating-cta {
    bottom: 1rem;
  }
}

/* ==========================================================================
   BACKGROUND ANIMATIONS
   ========================================================================== */
.bubbles-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

#float-download-btn {
  animation: shake-subtle 8s infinite ease-in-out;
  will-change: transform;
}

#float-download-btn:hover {
  animation: none;
  transform: scale(1.05);
}

@keyframes shake-subtle {
  0%,
  90%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  91.5% {
    transform: rotate(-3deg) scale(1.04);
  }

  93% {
    transform: rotate(3deg) scale(1.04);
  }

  94.5% {
    transform: rotate(-2deg) scale(1.04);
  }

  96% {
    transform: rotate(2deg) scale(1.04);
  }

  97.5% {
    transform: rotate(0deg) scale(1.04);
  }
}

/* Falling FLZ Coins */
.falling-flz {
  position: absolute;
  top: -50px;
  background-image: url('assets/flz_coin.webp');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
  will-change: transform, opacity;
  animation: fall-flz infinite linear;
  pointer-events: none;
}

@keyframes fall-flz {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.35;
  }

  90% {
    opacity: 0.35;
  }

  100% {
    transform: translateY(115vh) rotate(360deg) translateX(var(--drift, 30px));
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .falling-flz {
    display: none !important;
  }
}

/* Inline Coin inside texts */
.inline-coin {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 4px;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

/* Coming Soon Screen Overlay */
.coming-soon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: rgba(10, 5, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.coming-soon-content {
  max-width: 600px;
  text-align: center;
  animation: fadeInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coming-soon-logo-wrapper {
  margin-bottom: 2rem;
  display: inline-block;
  background: transparent;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.45);
  overflow: hidden;
}

.coming-soon-logo {
  width: 90px;
  height: 90px;
  display: block;
  object-fit: cover;
}

.coming-soon-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.coming-soon-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 70, 239, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.2);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.15);
}

.coming-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 1.5s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Unlock Modal Style */
.unlock-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000000;
  background: rgba(10, 5, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.unlock-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.unlock-modal-content {
  background: #120b2e;
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 2.5rem;
  border-radius: 24px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.unlock-modal.show .unlock-modal-content {
  transform: translateY(0);
}

.unlock-modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.unlock-modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.unlock-input-wrapper {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.unlock-input {
  width: 100%;
  background: #09041a;
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--text-main);
  padding: 0.9rem 3.2rem 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.unlock-visibility-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.unlock-visibility-btn:hover {
  color: var(--text-main);
}

.unlock-visibility-btn svg {
  width: 20px;
  height: 20px;
}

.unlock-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.4);
}

.unlock-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
  animation: shake 0.4s ease;
}

.unlock-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.unlock-btn {
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.unlock-btn.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

.unlock-btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.3);
}

.unlock-btn.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.unlock-btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}