﻿:root {
  --primary: #3b82f6;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-light: #60a5fa;
  --danger: #ef4444;
  --danger-light: #f97316;
  --midnight: #1e293b;
  --night: #0f172a;
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --black-40: rgba(0, 0, 0, 0.4);
  --black-10: rgba(0, 0, 0, 0.1);
  --shadow-premium: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
                     0 2px 4px -2px rgba(0, 0, 0, 0.2),
                     0 0 30px -10px rgba(59, 130, 246, 0.08);
  --shadow-premium-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.5),
                          0 8px 10px -6px rgba(0, 0, 0, 0.3),
                          0 0 60px -20px rgba(59, 130, 246, 0.15);
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--night);
  overflow-x: hidden;
}

body {
  background-color: var(--night);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--night);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-600);
}

::selection {
  background: linear-gradient(135deg, var(--primary), var(--danger));
  color: var(--white);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out-expo);
  border-bottom: 1px solid transparent;
}

/* .header.is-scrolled géré par header.is-scrolled plus bas */

.header-logo {
  transition: transform 0.4s var(--ease-out-expo);
  display: inline-block;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0;
  color: var(--white-70);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.4s var(--ease-out-expo);
}

/* nav-link::after géré par la définition complète plus bas dans le fichier */

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}


.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-stage {
  background-color: #000;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 30% 60%, rgba(59, 130, 246, 0.16), transparent 62%),
    radial-gradient(ellipse 60% 50% at 78% 28%, rgba(239, 68, 68, 0.12), transparent 58%),
    linear-gradient(180deg, #050505 0%, #0a0c14 45%, #000 100%);
  opacity: 1;
  transition: opacity 0.9s ease;
  animation: heroWaitPulse 4.5s ease-in-out infinite;
}

.hero-stage.is-live::before {
  opacity: 0;
  animation: none;
}

.hero-video {
  opacity: 0;
  transition: opacity 0.85s ease;
}

.hero-video.is-live {
  opacity: 1;
}

@keyframes heroWaitPulse {
  0%, 100% { filter: brightness(0.92); }
  50% { filter: brightness(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage::before {
    animation: none;
  }
  .hero-video {
    transition-duration: 0.2s;
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 70% at 50% 42%, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(6, 8, 16, 0.4) 38%, rgba(0, 0, 0, 0.88) 100%);
  backdrop-filter: blur(7px) saturate(1.12);
  -webkit-backdrop-filter: blur(7px) saturate(1.12);
}

.hero-veil::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 12% 88%, rgba(59, 130, 246, 0.14), transparent 62%),
    radial-gradient(ellipse 50% 36% at 90% 10%, rgba(239, 68, 68, 0.1), transparent 58%);
}

.hero-veil::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

@media (max-width: 767.98px) {
  .hero-veil {
    backdrop-filter: blur(4px) saturate(1.08);
    -webkit-backdrop-filter: blur(4px) saturate(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-veil {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
}

.hero-title {
  font-weight: 900;
  line-height: 1.05;
  color: var(--primary);
  text-shadow: 0 2px 10px rgba(59, 130, 246, 0.25),
               0 4px 22px rgba(0, 0, 0, 0.55),
               0 10px 48px rgba(0, 0, 0, 0.35);
  animation: pulseSoft 6s ease-in-out infinite;
  display: inline-block;
}

.hero-title > span:nth-child(2) {
  color: var(--primary);
}

@keyframes pulseSoft {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.015);
    filter: brightness(1.08);
  }
}

.hero-subtitle {
  letter-spacing: 0.2em;
  font-weight: 700;
  background: linear-gradient(90deg, var(--danger), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: visible;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: var(--white);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25),
              0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25),
              0 2px 6px rgba(0, 0, 0, 0.2),
              0 0 0 8px rgba(59, 130, 246, 0.15);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  transform: scale(1.03);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2),
              0 0 0 8px rgba(239, 68, 68, 0.15);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.section-title {
  position: relative;
  display: inline-block;
  font-weight: 800;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.section-title::before,
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--danger), var(--danger-light));
  border-radius: 2px;
  transition: width 0.8s var(--ease-out-expo);
}

.section-title::before {
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  display: none;
}

.section-title.is-visible::before,
[data-reveal].is-visible + .section-title::before,
.section-title[data-reveal].is-visible::before {
  width: 80px;
}

.card-premium {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4),
              0 4px 10px -4px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.03),
              0 0 40px -20px rgba(59, 130, 246, 0.08);
}

.card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
              0 10px 20px -8px rgba(0, 0, 0, 0.2),
              0 0 60px -15px rgba(59, 130, 246, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.discipline-card {
  overflow: hidden;
}

.discipline-card .discipline-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.discipline-card .discipline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.discipline-card:hover .discipline-image img {
  transform: scale(1.08);
}

.price-card {
  position: relative;
}

.price-card.popular {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4),
              0 4px 10px -4px rgba(0, 0, 0, 0.1),
              0 -10px 40px -10px rgba(59, 130, 246, 0.4),
              0 0 60px -20px rgba(59, 130, 246, 0.12);
}

.price-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 1rem 1rem 0 0;
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
  animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% {
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 2px 20px rgba(59, 130, 246, 0.6);
    transform: scale(1.04);
  }
}

.sponsor-card {
  background-color: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  transition: all 0.4s var(--ease-out-expo);
  filter: grayscale(100%);
  opacity: 0.7;
}

.sponsor-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.sponsor-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5),
              0 0 40px -15px rgba(59, 130, 246, 0.2);
}

.planning-day-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.25rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.4s var(--ease-out-expo);
}

.planning-day-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.4);
}

.planning-day-card .day-title {
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.planning-item {
  position: relative;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-left: 2px solid rgba(59, 130, 246, 0.3);
  margin-left: 0.25rem;
}

.planning-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.9rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.planning-item:first-child {
  padding-top: 0;
}

.planning-item:first-child::before {
  top: 0.4rem;
}

.planning-item:last-child {
  border-left-color: transparent;
}

.planning-time {
  font-weight: 600;
  color: var(--primary-light);
  font-size: 0.875rem;
}

.planning-class {
  color: var(--white-70);
  font-size: 0.875rem;
}


.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s var(--ease-out-expo);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(30, 41, 59, 0.9);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.1);
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-opacity='0.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background-color: var(--midnight);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

input[type="submit"].form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: var(--white);
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25),
              0 2px 6px rgba(0, 0, 0, 0.2);
}

input[type="submit"].form-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25),
              0 2px 6px rgba(0, 0, 0, 0.2),
              0 0 0 8px rgba(59, 130, 246, 0.15);
}

input[type="submit"].form-submit:active {
  transform: scale(0.98);
}

.footer-slogan {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary), var(--danger));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .footer-slogan {
    font-size: 2rem;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

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

/* @keyframes pulseSoft, défini plus haut avec scale + brightness */

.fade-up {
  animation: fadeUp 0.8s var(--ease-out-expo) forwards;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  [data-reveal].reveal-delay-1 { transition-delay: 40ms; }
  [data-reveal].reveal-delay-2 { transition-delay: 80ms; }
  [data-reveal].reveal-delay-3 { transition-delay: 120ms; }
  [data-reveal].reveal-delay-4 { transition-delay: 160ms; }
  [data-reveal].reveal-delay-5 { transition-delay: 200ms; }
  [data-reveal].reveal-delay-6 { transition-delay: 240ms; }
  [data-reveal].reveal-delay-7 { transition-delay: 280ms; }
}

.text-gradient-primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-danger {
  background: linear-gradient(90deg, var(--danger), var(--danger-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--danger));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.border-gradient {
  position: relative;
  border-radius: inherit;
}

.border-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--danger));
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.glow-hover {
  transition: all 0.4s var(--ease-out-expo);
}

.glow-hover:hover {
  box-shadow: 0 0 40px -10px rgba(59, 130, 246, 0.3),
              0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.glass {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 767.98px) {
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .disciplines-grid {
    grid-template-columns: 1fr !important;
  }

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

  .fab-container {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.5rem;
  }

  .fab {
    width: 46px;
    height: 46px;
  }

  .fab svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .disciplines-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

  .planning-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-title {
    animation: none !important;
  }

  .popular-badge {
    animation: none !important;
  }
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.fab:focus-visible,
.nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5),
              0 0 0 6px rgba(59, 130, 246, 0.2);
  border-radius: 6px;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
input[type="submit"].form-submit:focus-visible {
  border-radius: 14px;
}

.fab:focus-visible {
  border-radius: 50%;
}

/* =========================================================
   SPONSORS CAROUSEL PREMIUM v3 â€” FightClub26
   ========================================================= */
.sponsors-carousel-v3 {
  width: 100%;
}

.sponsors-carousel-v3 .sponsors-viewport {
  overflow: hidden;
  padding: 18px 6px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.sponsors-carousel-v3 .sponsors-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: sc_fc26_scroll 12s linear infinite;
}

.sponsors-carousel-v3:hover .sponsors-track {
  animation-play-state: paused;
}

.sponsors-carousel-v3 .sponsor-card-carousel {
  display: inline-flex;
  align-items: stretch;
  justify-content: stretch;
  text-decoration: none;
  height: 96px;
  width: 180px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 22px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.sponsors-carousel-v3 .sponsor-logo-carousel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  opacity: .98;
  transform: scale(1.06);
  transition: transform .18s ease, filter .18s ease;
}

.sponsors-carousel-v3 .sponsor-card-carousel:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 16px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.14);
}

.sponsors-carousel-v3 .sponsor-card-carousel:hover .sponsor-logo-carousel {
  transform: scale(1.10);
  filter: saturate(1.15) contrast(1.10);
}

.sponsors-carousel-v3 .sponsor-card-carousel.sponsor-white-bg {
  background: #ffffff;
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 10px 22px rgba(15,23,42,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sponsors-carousel-v3 .sponsor-logo-carousel.sponsor-logo-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 6px;
  transform: scale(1);
  filter: saturate(1.02) contrast(1.02);
  display: block;
}

/* Carte spéciale Région : fond blanc pour bien voir le logo transparent */
.sponsors-carousel-v3 .sponsor-card-carousel.sponsor-region-bg {
  background: #ffffff;
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 10px 22px rgba(15,23,42,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 2px 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sponsors-carousel-v3 .sponsor-logo-carousel.sponsor-logo-region {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.85);
  filter: saturate(1.08) contrast(1.12);
  display: block;
}

.sponsors-carousel-v3 .sponsor-card-carousel.sponsor-region-bg:hover {
  background: #ffffff;
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 16px 34px rgba(15,23,42,0.18), inset 0 1px 0 rgba(255,255,255,0.95);
}

.sponsors-carousel-v3 .sponsor-card-carousel.sponsor-region-bg:hover .sponsor-logo-carousel.sponsor-logo-region {
  transform: scale(2);
  filter: saturate(1.12) contrast(1.15);
}

.sponsors-carousel-v3 .sponsor-card-carousel.sponsor-white-bg:hover {
  background: #ffffff;
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 16px 34px rgba(15,23,42,0.18), inset 0 1px 0 rgba(255,255,255,0.95);
}

.sponsors-carousel-v3 .sponsor-card-carousel.sponsor-white-bg:hover .sponsor-logo-carousel.sponsor-logo-contain {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}

@keyframes sc_fc26_scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 767.98px) {
  .sponsors-carousel-v3 .sponsors-viewport { padding: 16px 6px; border-radius: 20px; }
  .sponsors-carousel-v3 .sponsors-track { gap: 12px; animation-duration: 10s; }
  .sponsors-carousel-v3 .sponsor-card-carousel { height: 86px; width: 160px; border-radius: 16px; }
  .sponsors-carousel-v3 .sponsor-logo-carousel { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .sponsors-carousel-v3 .sponsors-track { animation: none; }
}

/* =========================================================
   FLOATING BUTTONS PREMIUM + POPUPS â€” FightClub26
   ========================================================= */
.floating-buttons-container {
    position: fixed;
    z-index: 9999;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

@media (max-width: 767.98px) {
    .floating-buttons-container {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }
    .floating-buttons-container.is-near-footer {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(50%) translateY(18px);
    }
}

.floating-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@media (max-width: 767.98px) {
    .floating-buttons-stack {
        flex-direction: row;
        gap: 20px;
    }
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.email-btn {
    background: linear-gradient(135deg, #E74C3C 0%, #c0392b 100%);
    animation-delay: 0.1s;
}

.phone-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
    animation-delay: 0.3s;
}

.instagram-btn {
    background: transparent;
    padding: 0;
    overflow: hidden;
    animation-delay: 0.5s;
}

.instagram-btn img,
.instagram-btn svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(0);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
}

.phone-btn {
    animation: fadeInUp 0.6s ease forwards, phoneAttention 2s ease-in-out 2s infinite;
}

.phone-btn:hover {
    animation: fadeInUp 0.6s ease forwards;
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

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

@keyframes phoneAttention {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    }
    25% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(74, 144, 226, 0.6);
    }
    75% {
        transform: scale(1.08);
        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
    }
}

.floating-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 767.98px) {
    .floating-btn::before {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        top: -50px;
    }
}

.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* POPUPS */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popup-overlay.is-open {
    display: flex;
}

.popup-content {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.popup-content h3 {
    color: #4A90E2;
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.popup-content p {
    color: white;
    margin: 0 0 25px 0;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.popup-contact-info {
    background: rgba(74, 144, 226, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.popup-contact-info span {
    color: #4A90E2;
    font-size: 18px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.popup-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.popup-btn.copy {
    background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
    color: white;
}

.popup-btn.copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.popup-btn.close {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-btn.close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.copy-success {
    color: #4CAF50;
    font-size: 12px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-success.show {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .popup-content {
        padding: 25px 20px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-btn {
        width: 100%;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* ================================================================
   OCTAGON CAGE TEXTURE ANIMÃ‰E â€” PREMIUM BACKGROUND
   Pour sections fond noir : #Nos-Sponsors / #Planning / #Contact
   ================================================================ */

.octagon-bg {
    position: relative;
    background-color: #0a0f1e;
    overflow: hidden;
    isolation: isolate;
}

.octagon-bg::before,
.octagon-bg::after {
    content: '';
    position: absolute;
    inset: -50%;
    z-index: -1;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Couche principale â€” Grillage octogones (doublÃ©e en offset pour maillage serrÃ©) */
.octagon-bg::before {
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%233b82f6' stop-opacity='0.18'/%3E%3Cstop offset='50%25' stop-color='%236366f1' stop-opacity='0.08'/%3E%3Cstop offset='100%25' stop-color='%23ef4444' stop-opacity='0.15'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M70 12 L98 26 L120 54 L120 86 L98 114 L70 128 L42 114 L20 86 L20 54 L42 26 Z' fill='none' stroke='url(%23g1)' stroke-width='1.2'/%3E%3Ccircle cx='70' cy='70' r='1.6' fill='%233b82f6' opacity='0.35'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cpath d='M0 54 L12 42 L12 98 L0 86 Z M140 54 L128 42 L128 98 L140 86 Z M54 0 L42 12 L98 12 L86 0 Z M54 140 L42 128 L98 128 L86 140 Z' fill='none' stroke='%233b82f6' stroke-opacity='0.1' stroke-width='0.8'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 140px 140px, 140px 140px;
    background-position: 0 0, 70px 70px;
    animation: octagon-drift 32s linear infinite;
    opacity: 0.95;
    mix-blend-mode: screen;
}

/* Couche secondaire â€” Grillage fin "chain-link" + halo radial */
.octagon-bg::after {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Cpath d='M35 6 L49 13 L60 27 L60 43 L49 57 L35 64 L21 57 L10 43 L10 27 L21 13 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.035' stroke-width='0.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-size: auto, auto, auto, 70px 70px;
    background-position: 0 0, 100% 100%, 50% 100%, 35px 35px;
    animation: octagon-shimmer 16s ease-in-out infinite;
    opacity: 1;
    mix-blend-mode: soft-light;
}

/* Vignette intÃ©rieure â€” assombrit les bords pour effet "cage" */
.octagon-bg > * {
    position: relative;
    z-index: 1;
}

@keyframes octagon-drift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-140px, -140px);
    }
}

@keyframes octagon-shimmer {
    0%, 100% {
        opacity: 0.85;
        filter: hue-rotate(0deg) brightness(1);
        background-position: 0% 0%, 100% 100%, 50% 100%, 35px 35px;
    }
    25% {
        opacity: 1;
        filter: hue-rotate(10deg) brightness(1.1);
        background-position: 5% 5%, 95% 95%, 50% 100%, 45px 40px;
    }
    50% {
        opacity: 0.92;
        filter: hue-rotate(-8deg) brightness(0.95);
        background-position: 0% 10%, 100% 90%, 50% 100%, 30px 30px;
    }
    75% {
        opacity: 1;
        filter: hue-rotate(5deg) brightness(1.08);
        background-position: 3% 7%, 97% 93%, 50% 100%, 40px 45px;
    }
}

/* Vignette dark premium sur les bords de section */
.octagon-bg::before {
    -webkit-mask-image: radial-gradient(ellipse 120% 100% at 50% 50%, black 40%, transparent 95%);
    mask-image: radial-gradient(ellipse 120% 100% at 50% 50%, black 40%, transparent 95%);
}

/* ================================================================
   HEADER PREMIUM â€” Bord arrondi + Gants animÃ©s + Indicator ScrollSpy
   ================================================================ */

.header-inner {
    border-radius: 9999px;
    padding: 4px;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
}

header.is-scrolled .header-inner {
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(59, 130, 246, 0.15),
                0 0 50px -12px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.2);
}

/* === Underline ScrollSpy (nav-link trait colorÃ©) === */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #a855f7, var(--danger));
    border-radius: 9999px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.nav-link:hover::after {
    width: calc(100% - 24px);
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.nav-link.is-active::after {
    width: calc(100% - 24px);
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    animation: underlineGlow 2.2s ease-in-out infinite;
}

.nav-link.is-active {
    color: #fff;
    text-shadow: 0 0 18px rgba(59, 130, 246, 0.25);
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.45),
                    0 0 16px rgba(168, 85, 247, 0.18);
    }
    50% {
        box-shadow: 0 0 14px rgba(59, 130, 246, 0.75),
                    0 0 28px rgba(239, 68, 68, 0.25);
    }
}

/* === GANTS DE BOXE DÉCORATIFS === */
.glove-decoration {
    transform-origin: 50% 0%;
    animation: gloveSwing 6.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
    /* centrage stable : translateX(-50%) toujours présent, même pendant l'animation */
    transform: translateX(-50%) rotate(0deg);
}

@keyframes gloveSwing {
    0%   { transform: translateX(-50%) rotate(-3deg); }
    50%  { transform: translateX(-50%) rotate(3deg); }
    100% { transform: translateX(-50%) rotate(-3deg); }
}

.header-inner:hover .glove-decoration {
    animation-play-state: running;
}

.glove-decoration.is-clicked {
    animation: gloveClickSwing 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1;
    z-index: 60;
}

@keyframes gloveClickSwing {
    0%   { transform: translateX(-50%) rotate(0deg); }
    25%  { transform: translateX(-50%) rotate(-40deg); }
    55%  { transform: translateX(-50%) rotate(32deg); }
    78%  { transform: translateX(-50%) rotate(-18deg); }
    92%  { transform: translateX(-50%) rotate(8deg); }
    100% { transform: translateX(-50%) rotate(0deg); }
}

/* Mobile menu gloves animation (retired) */
@-webkit-keyframes unused {}
@keyframes unused {}

/* === Mobile menu gloves animation === */
@keyframes mobileGloveL {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%      { transform: rotate(12deg) translateY(-6px) scale(1.05); }
}
@keyframes mobileGloveR {
    0%, 100% { transform: scaleX(-1) rotate(-8deg) translateY(0); }
    50%      { transform: scaleX(-1) rotate(12deg) translateY(-6px) scale(1.05); }
}

/* === Mobile header gloves (sous le hamburger) === */
.glove-mobile-l {
    transform-origin: 50% 0%;
    animation: gloveMobileL 2.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.glove-mobile-r {
    transform-origin: 50% 0%;
    animation: gloveMobileR 2.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes gloveMobileL {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50%      { transform: rotate(8deg)  translateY(-2px) scale(1.04); }
}
@keyframes gloveMobileR {
    0%, 100% { transform: scaleX(-1) rotate(-6deg) translateY(0); }
    50%      { transform: scaleX(-1) rotate(8deg)  translateY(-2px) scale(1.04); }
}

@keyframes gloveMobileHanger {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50%      { transform: rotate(5deg)  translateY(-2px) scale(1.02); }
}

/* Mobile header gloves (md+) visible uniquement sm+ */
@media (max-width: 639px) {
    .header-inner {
        border-radius: 28px;
    }
    header { padding-top: 12px !important; }
}

.fc-reviews-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.75rem;
}

.fc-reviews-score {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.fc-reviews-stars {
    color: #fbbc04;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
}

.fc-reviews-count {
    color: #94a3b8;
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fc-reviews-count:hover {
    color: #60a5fa;
}

.fc-reviews-viewport {
    overflow: hidden;
    position: relative;
}

.fc-reviews-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .fc-reviews-track {
        transform: none !important;
    }
}

.fc-review-card {
    flex: 0 0 min(340px, calc(100vw - 3rem));
    width: min(340px, calc(100vw - 3rem));
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.35rem 1.4rem;
    min-height: 220px;
}

.fc-review-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fc-review-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.fc-review-meta img {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
    background: #1e293b;
}

.fc-reviews-nav {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.1rem;
}

.fc-reviews-nav button {
    width: 42px;
    height: 42px;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
}

.fc-reviews-nav button:hover {
    border-color: rgba(59, 130, 246, 0.45);
    background: rgba(59, 130, 246, 0.15);
}

.fc-map-wrap {
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f172a;
}

.fc-map-wrap iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
    filter: grayscale(0.15) contrast(1.05);
}



