/* ================================================================
   BAR DES SPORTS — Kourou
   Palette : fond stade + accents drapeaux (FR, BR, GF)
   ================================================================ */

:root {
  --c-ink: #0b0d12;
  --c-ink-2: #12151d;
  --c-night: #0b1220;
  --c-paper: #f7f4ee;
  --c-white: #f2f2f2;
  --c-muted: #a8acb5;

  --c-green: #009739;   /* Brésil / Guyane */
  --c-yellow: #fedd00;  /* Brésil / Guyane */
  --c-red:   #e1000f;   /* France / Guyane */
  --c-blue:  #002654;   /* France */
  --c-blue-accent: #1e88ff;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 14px 44px rgba(0,0,0,.35);
  --maxw: 1200px;

  --f-title: "Bebas Neue", "Oswald", Impact, sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- TYPO UTILS ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--f-title);
  letter-spacing: .22em;
  font-size: 14px;
  color: var(--c-red);
  margin: 0 0 10px;
}
.eyebrow--light { color: var(--c-yellow); }
.section__title {
  font-family: var(--f-title);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: .95;
  letter-spacing: .02em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.section__title--light { color: var(--c-white); }
.section__sub { font-size: 18px; max-width: 620px; color: var(--c-muted); }
.section__head { text-align: center; margin: 0 auto 48px; max-width: 720px; }
.section__head .section__sub { margin: 0 auto; }
.accent-green  { color: var(--c-green); }
.accent-yellow { color: var(--c-yellow); }
.accent-red    { color: var(--c-red); }
.accent-blue   { color: var(--c-blue-accent); }

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--f-title);
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.btn--primary:hover { transform: translateY(-2px); background: #ff1424; }
.btn--ghost {
  background: transparent;
  border-color: currentColor;
}
.btn--ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--whatsapp {
  background: var(--c-green);
  color: #fff;
  border-color: var(--c-green);
}
.btn--whatsapp:hover { background: #00b345; transform: translateY(-2px); }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: transparent;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease;
}
.header.is-scrolled {
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.header__logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-yellow);
}
.header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--f-title);
  letter-spacing: .1em;
}
.header__brand-short { font-size: 22px; color: #fff; }
.header__brand-long { font-size: 11px; color: var(--c-yellow); margin-top: 4px; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 6px 0;
  position: relative;
}
.header__nav a:not(.header__cta)::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--c-yellow);
  transition: width .2s ease;
}
.header__nav a:not(.header__cta):hover::after { width: 100%; }

.header__cta {
  background: var(--c-red);
  padding: 10px 18px !important;
  border-radius: 999px;
  font-family: var(--f-title);
  font-size: 14px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase;
}
.header__cta:hover { background: #ff1424; }

.header__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: space-between;
}
.header__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 38, 84, .55), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(225, 0, 15, .35), transparent 60%),
    linear-gradient(180deg, rgba(11,13,18,.55) 0%, rgba(11,13,18,.85) 100%);
}
.hero__stripes {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: .75;
}
.hero__stripes .stripe {
  position: absolute;
  top: -30%;
  width: 60px;
  height: 160%;
  transform: rotate(18deg);
  mix-blend-mode: screen;
  filter: blur(1px);
}
.stripe--green  { left: 5%;  background: var(--c-green); opacity: .35; }
.stripe--yellow { left: 22%; background: var(--c-yellow); opacity: .22; }
.stripe--red    { right: 20%;background: var(--c-red); opacity: .35; }
.stripe--blue   { right: 6%; background: var(--c-blue-accent); opacity: .28; }

.hero__content {
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}
.hero__kicker {
  font-family: var(--f-title);
  letter-spacing: .35em;
  font-size: 16px;
  color: var(--c-yellow);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--f-title);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: .85;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 6px 30px rgba(0,0,0,.5);
}
.hero__title span { display: block; }
.hero__title-accent {
  background: linear-gradient(90deg, var(--c-yellow) 0%, var(--c-green) 50%, var(--c-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__tagline {
  font-size: clamp(16px, 2vw, 20px);
  margin: 28px auto 36px;
  max-width: 600px;
  color: rgba(255,255,255,.9);
}
.hero__tagline .flags { display: inline-block; margin-left: 6px; filter: saturate(1.2); }
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-title);
  letter-spacing: .3em;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-align: center;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.5);
  margin: 10px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.3); opacity: .4; }
  50%      { transform: scaleY(1);  opacity: 1; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section--about { background: var(--c-paper); }
.section--matchs {
  background: linear-gradient(160deg, var(--c-night) 0%, var(--c-ink) 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.section--matchs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg,
      transparent 0 60px,
      rgba(0, 151, 57, .04) 60px 70px,
      transparent 70px 120px,
      rgba(254, 221, 0, .03) 120px 130px,
      transparent 130px 180px,
      rgba(225, 0, 15, .04) 180px 190px);
  pointer-events: none;
}
.section--events { background: var(--c-paper); }
.section--gallery {
  background: linear-gradient(180deg, var(--c-paper) 0%, #efeae0 100%);
}
.section--hours {
  background: linear-gradient(160deg, var(--c-ink) 0%, var(--c-night) 100%);
  color: var(--c-white);
}
.section--contact { background: var(--c-paper); }

/* ---------- ABOUT ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__text p { font-size: 17px; color: #35363d; margin: 0 0 16px; }
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__sticker {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 14px 18px;
  border-radius: 50%;
  font-family: var(--f-title);
  font-size: 14px;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1;
  transform: rotate(-8deg);
  width: 96px; height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.about__sticker strong { font-size: 26px; margin-top: 4px; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid rgba(11,13,18,.12);
  border-radius: 999px;
  background: #fff;
  font-family: var(--f-title);
  letter-spacing: .12em;
  font-size: 14px;
}
.badge__flag { font-size: 18px; }

/* ---------- MATCHS ---------- */
.matchs {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.matchs__content .lead { font-size: 18px; color: rgba(255,255,255,.85); max-width: 560px; }

.steps {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 14px;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  font-size: 16px;
}
.steps__num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--c-ink);
  font-family: var(--f-title);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}

.matchs__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.sports {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sports li {
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .04em;
}

.matchs__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  aspect-ratio: 9/11;
}
.matchs__media video { width: 100%; height: 100%; object-fit: cover; }

.matchs__scoreboard {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(11,13,18,.85);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.15);
}
.scoreboard__label {
  font-family: var(--f-title);
  letter-spacing: .18em;
  color: #fff;
  font-size: 13px;
}
.matchs__scoreboard .scoreboard__label { color: var(--c-red); }
.scoreboard__dot {
  width: 8px; height: 8px;
  background: var(--c-red);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1; box-shadow: 0 0 0 0 rgba(225,0,15,.6); }
  50%      { transform: scale(1.3); opacity: .6; box-shadow: 0 0 0 12px rgba(225,0,15,0); }
}

/* ---------- ÉVÉNEMENTS ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.event-card img, .event-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,.18); }
.event-card:hover img,
.event-card:hover video { transform: scale(1.06); }

.event-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 18px 18px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 80%);
}
.event-card__body h3 {
  font-family: var(--f-title);
  font-size: 26px;
  letter-spacing: .05em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.event-card__body p { margin: 0; font-size: 14px; opacity: .9; }

/* ---------- GALERIE ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}
.gallery__item img,
.gallery__item video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.05); }
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(4) { grid-column: span 2; }

/* ---------- HORAIRES / SCOREBOARD ---------- */
.scoreboard {
  max-width: 820px;
  margin: 0 auto;
  border: 2px solid rgba(254, 221, 0, .25);
  border-radius: var(--radius);
  background: rgba(0,0,0,.4);
  box-shadow: 0 30px 80px rgba(0,0,0,.4), inset 0 0 60px rgba(254,221,0,.04);
  overflow: hidden;
}
.scoreboard__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px dashed rgba(254,221,0,.15);
  gap: 12px;
  font-family: var(--f-title);
  letter-spacing: .08em;
  font-size: 18px;
}
.scoreboard__row:last-child { border-bottom: 0; }
.scoreboard__row .scoreboard__label { color: var(--c-yellow); text-transform: uppercase; font-size: 16px; }
.scoreboard__days { color: rgba(255,255,255,.75); text-transform: uppercase; }
.scoreboard__time {
  color: #fff;
  text-align: right;
  font-size: 22px;
  text-shadow: 0 0 16px rgba(254,221,0,.3);
  font-variant-numeric: tabular-nums;
}
.scoreboard__row--closed .scoreboard__time { color: var(--c-red); text-shadow: 0 0 16px rgba(225,0,15,.4); }

/* ---------- CONTACT ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.contact__address {
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
  margin: 18px 0 22px;
}
.contact__address strong { font-family: var(--f-title); letter-spacing: .08em; font-size: 22px; }
.contact__social {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid rgba(11,13,18,.1);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--c-red);
  box-shadow: 0 10px 24px rgba(225,0,15,.12);
}
.social-link__icon { font-size: 28px; }
.social-link strong { display: block; font-family: var(--f-title); letter-spacing: .08em; font-size: 18px; }
.social-link small { display: block; color: var(--c-muted); font-size: 13px; }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; }

#copyAddress { color: var(--c-ink); padding: 10px 20px; font-size: 14px; }
#copyAddress.is-copied { background: var(--c-green); color: #fff; border-color: var(--c-green); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-ink);
  color: #fff;
  padding: 50px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-yellow);
}
.footer__brand strong {
  display: block;
  font-family: var(--f-title);
  letter-spacing: .1em;
  font-size: 22px;
}
.footer__brand span { font-size: 13px; color: var(--c-muted); }

.footer__stripes {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
  min-width: 180px;
}
.footer__stripes .stripe {
  width: 24px; height: 6px; border-radius: 2px;
  position: static; transform: none; filter: none; mix-blend-mode: normal;
  opacity: 1;
}
.footer__stripes .stripe--green  { background: var(--c-green); }
.footer__stripes .stripe--yellow { background: var(--c-yellow); }
.footer__stripes .stripe--red    { background: var(--c-red); }
.footer__stripes .stripe--blue   { background: var(--c-blue-accent); }

.footer__copy { color: var(--c-muted); font-size: 13px; margin: 0; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__content {
  max-width: 95vw;
  max-height: 90vh;
}
.lightbox__content img,
.lightbox__content video {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--c-green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  z-index: 300;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .about, .matchs, .contact { grid-template-columns: 1fr; gap: 40px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery__item:nth-child(4) { grid-column: span 2; }
  .section { padding: 80px 0; }
}

@media (max-width: 640px) {
  .header__burger { display: flex; }
  .header__nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 13, 18, 0.96);
    backdrop-filter: blur(18px);
    padding: 20px;
    transform: translateY(-120%);
    transition: transform .3s ease;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .header__nav.is-open { transform: translateY(0); }
  .header__nav a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .header__nav a:last-child { border-bottom: 0; }
  .header__cta { margin-top: 10px; text-align: center; }

  .header__brand-long { display: none; }

  .events-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(4) { grid-column: span 1; }

  .scoreboard__row {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 4px;
    padding: 18px 22px;
  }
  .scoreboard__time { text-align: left; }

  .footer__inner { justify-content: center; text-align: center; }

  .hero__content { padding: 140px 20px 100px; }
  .section { padding: 70px 0; }
  .section__head { margin-bottom: 36px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video, .matchs__media video, .event-card video, .gallery__item video {
    display: none;
  }
  .reveal { opacity: 1; transform: none; }
}
