/* ==========================================================
   FUTURIST GAMES
   INFORMATIONS PRODUIT SOUS LE CALENDRIER
   VERSION ÉPURÉE, PREMIUM ET RESPONSIVE
   ========================================================== */


/* ==========================================================
   VARIABLES PRINCIPALES
   ========================================================== */

.fg-product-info {
  --fg-background: #05070b;
  --fg-card: #0b1018;
  --fg-card-hover: #0e1621;

  --fg-text: #ffffff;
  --fg-muted: #aab4c5;

  --fg-blue: #18bfff;
  --fg-purple: #b85cff;
  --fg-danger: #ff4f82;

  --fg-border: rgba(134, 181, 255, 0.16);
  --fg-border-hover: rgba(24, 191, 255, 0.42);
}


/* ==========================================================
   BASE
   ========================================================== */

.fg-product-info,
.fg-product-info * {
  box-sizing: border-box;
}

.fg-product-info {
  width: 100%;
  max-width: 1440px;

  margin: 30px auto 0;
  padding: 0 20px 50px;

  color: var(--fg-text);
  font-family: inherit;
}

.fg-product-info article,
.fg-product-info div {
  min-width: 0;
}


/* ==========================================================
   TYPOGRAPHIE
   ========================================================== */

.fg-product-info h2,
.fg-product-info h3,
.fg-product-info p {
  margin-top: 0;
}

.fg-product-info h2 {
  margin-bottom: 18px;

  color: var(--fg-text);

  font-size: clamp(23px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.fg-product-info h3 {
  margin-bottom: 7px;

  color: var(--fg-text);

  font-size: 17px;
  font-weight: 750;
  line-height: 1.3;
}

.fg-product-info p,
.fg-product-info li,
.fg-product-info address {
  color: var(--fg-muted);

  font-size: 15px;
  line-height: 1.75;
}

.fg-product-info strong {
  color: var(--fg-text);
}

.fg-info-label {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--fg-blue);

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* ==========================================================
   GRILLE PRINCIPALE
   ========================================================== */

.fg-info-grid {
  display: grid;
  gap: 18px;
}

.fg-info-grid-main {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* ==========================================================
   CARTES DE PRÉSENTATION
   ========================================================== */

.fg-info-card {
  position: relative;

  display: flex;
  gap: 24px;

  padding: clamp(26px, 3vw, 42px);

  overflow: hidden;

  border: 1px solid var(--fg-border);
  border-radius: 22px;

  background:
    radial-gradient(
      circle at 0 0,
      rgba(30, 174, 255, 0.1),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(14, 20, 30, 0.98),
      rgba(6, 9, 15, 0.98)
    );

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.fg-info-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;

  width: 190px;
  height: 190px;

  border-radius: 50%;

  background: rgba(184, 92, 255, 0.08);

  filter: blur(25px);

  content: "";

  pointer-events: none;
}

.fg-info-icon {
  display: flex;
  flex: 0 0 52px;

  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border: 1px solid rgba(24, 191, 255, 0.24);
  border-radius: 15px;

  background: rgba(24, 191, 255, 0.07);
}

.fg-info-icon svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: var(--fg-blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fg-info-content {
  position: relative;
  z-index: 2;
}

.fg-info-content p:last-child {
  margin-bottom: 0;
}


/* ==========================================================
   AVANTAGES DE LA RÉSERVATION
   ========================================================== */

.fg-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;

  margin-top: 18px;
}

.fg-benefit {
  display: flex;
  gap: 14px;

  align-items: flex-start;

  padding: 22px;

  border: 1px solid var(--fg-border);
  border-radius: 16px;

  background: rgba(10, 15, 23, 0.82);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.fg-benefit:hover {
  transform: translateY(-3px);

  border-color: var(--fg-border-hover);

  background: var(--fg-card-hover);
}

.fg-benefit-icon {
  display: flex;
  flex: 0 0 40px;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 12px;

  background: rgba(24, 191, 255, 0.08);
}

.fg-benefit-icon svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: var(--fg-blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fg-benefit h3 {
  font-size: 15px;
}

.fg-benefit p {
  margin-bottom: 0;

  font-size: 13px;
  line-height: 1.55;
}


/* ==========================================================
   ÂGE MINIMUM
   ========================================================== */

.fg-age-banner {
  display: flex;
  gap: clamp(24px, 4vw, 52px);

  align-items: center;

  margin-top: 18px;
  padding: clamp(28px, 4vw, 48px);

  border: 1px solid var(--fg-border);
  border-radius: 22px;

  background:
    radial-gradient(
      circle at 100% 50%,
      rgba(184, 92, 255, 0.13),
      transparent 42%
    ),
    linear-gradient(
      120deg,
      rgba(13, 18, 28, 0.98),
      rgba(7, 10, 16, 0.98)
    );
}

.fg-age-number {
  display: flex;
  flex: 0 0 120px;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 120px;
  height: 120px;

  border: 1px solid rgba(184, 92, 255, 0.38);
  border-radius: 50%;

  background: rgba(184, 92, 255, 0.07);

  box-shadow:
    0 0 35px rgba(184, 92, 255, 0.12),
    inset 0 0 25px rgba(184, 92, 255, 0.06);
}

.fg-age-number span {
  color: var(--fg-text);

  font-size: 48px;
  font-weight: 900;
  line-height: 0.9;
}

.fg-age-number small {
  margin-top: 7px;

  color: var(--fg-purple);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fg-age-content p {
  max-width: 760px;
  margin-bottom: 0;
}


/* ==========================================================
   VIDÉO
   ========================================================== */

.fg-video-section {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.75fr)
    minmax(0, 1.5fr);

  gap: 20px;

  margin-top: 18px;
  padding: clamp(20px, 3vw, 34px);

  border: 1px solid var(--fg-border);
  border-radius: 22px;

  background: var(--fg-card);
}

.fg-video-text {
  display: flex;

  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding: clamp(8px, 2vw, 22px);
}

.fg-video-wrapper {
  position: relative;

  min-height: 340px;

  overflow: hidden;

  border: 1px solid rgba(134, 181, 255, 0.15);
  border-radius: 17px;

  background: #020306;
}

.fg-video-wrapper iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}


/* ==========================================================
   BOUTONS
   ========================================================== */

.fg-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  margin-top: 12px;
  padding: 0 22px;

  border: 1px solid rgba(184, 92, 255, 0.6);
  border-radius: 12px;

  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      rgba(77, 98, 255, 0.95),
      rgba(184, 92, 255, 0.95)
    );

  box-shadow:
    0 10px 26px rgba(103, 69, 255, 0.18);

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.fg-button:hover {
  transform: translateY(-2px);

  color: #ffffff !important;

  box-shadow:
    0 14px 34px rgba(103, 69, 255, 0.3);
}

.fg-button-secondary {
  border-color: rgba(24, 191, 255, 0.36);

  background: rgba(24, 191, 255, 0.08);

  box-shadow: none;
}

.fg-button-secondary:hover {
  background: rgba(24, 191, 255, 0.14);

  box-shadow:
    0 12px 30px rgba(24, 191, 255, 0.12);
}


/* ==========================================================
   INFORMATIONS PRATIQUES
   ========================================================== */

.fg-practical-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.85fr);

  gap: 18px;

  margin-top: 18px;
}

.fg-faq-block {
  padding: clamp(26px, 3vw, 38px);

  border: 1px solid var(--fg-border);
  border-radius: 22px;

  background: var(--fg-card);
}


/* ==========================================================
   ACCORDÉONS
   ========================================================== */

.fg-accordion {
  display: grid;
  gap: 10px;

  margin-top: 25px;
}

.fg-accordion details {
  overflow: hidden;

  border: 1px solid rgba(134, 181, 255, 0.13);
  border-radius: 13px;

  background: rgba(5, 9, 15, 0.58);
}

.fg-accordion details[open] {
  border-color: rgba(24, 191, 255, 0.28);

  background: rgba(10, 16, 25, 0.92);
}

.fg-accordion summary {
  display: flex;

  gap: 20px;

  align-items: center;
  justify-content: space-between;

  min-height: 64px;

  padding: 17px 19px;

  color: var(--fg-text);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;

  cursor: pointer;

  list-style: none;
}

.fg-accordion summary::-webkit-details-marker {
  display: none;
}

.fg-accordion-plus {
  position: relative;

  flex: 0 0 18px;

  width: 18px;
  height: 18px;
}

.fg-accordion-plus::before,
.fg-accordion-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 12px;
  height: 1.5px;

  border-radius: 5px;

  background: var(--fg-blue);

  content: "";

  transform: translate(-50%, -50%);

  transition: transform 0.25s ease;
}

.fg-accordion-plus::after {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}

.fg-accordion details[open] .fg-accordion-plus::after {
  transform:
    translate(-50%, -50%)
    rotate(0deg);
}

.fg-accordion-content {
  padding: 0 19px 20px;
}

.fg-accordion-content p {
  margin-bottom: 0;

  font-size: 14px;
}


/* ==========================================================
   CARTES LATÉRALES
   ========================================================== */

.fg-practical-side {
  display: grid;
  gap: 12px;
}

.fg-small-card {
  display: flex;
  gap: 18px;

  padding: clamp(24px, 3vw, 30px);

  border: 1px solid var(--fg-border);
  border-radius: 18px;

  background: var(--fg-card);
}

.fg-small-card-icon {
  display: flex;
  flex: 0 0 45px;

  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  border-radius: 13px;

  background: rgba(184, 92, 255, 0.09);
}

.fg-small-card-icon svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: var(--fg-purple);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fg-small-card p {
  margin-bottom: 0;

  font-size: 14px;
}

.fg-warning-card {
  border-color: rgba(255, 79, 130, 0.22);
}

.fg-warning-card .fg-small-card-icon {
  background: rgba(255, 79, 130, 0.08);
}

.fg-warning-card .fg-small-card-icon svg {
  stroke: var(--fg-danger);
}

.fg-warning-card ul {
  margin: 14px 0 0;
  padding: 0;

  list-style: none;
}

.fg-warning-card li {
  position: relative;

  margin-bottom: 7px;
  padding-left: 18px;

  font-size: 13px;
  line-height: 1.55;
}

.fg-warning-card li::before {
  position: absolute;
  top: 9px;
  left: 2px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--fg-danger);

  content: "";
}

.fg-review-links {
  display: flex;
  flex-wrap: wrap;

  gap: 9px 18px;

  margin-top: 18px;
}

.fg-review-links a {
  color: var(--fg-blue) !important;

  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.fg-review-links a::after {
  content: " →";
}


/* ==========================================================
   LOCALISATION
   ========================================================== */

.fg-location-section {
  display: grid;
  grid-template-columns:
    minmax(250px, 0.52fr)
    minmax(0, 1.48fr);

  gap: 18px;

  margin-top: 18px;
  padding: 16px;

  border: 1px solid var(--fg-border);
  border-radius: 22px;

  background: var(--fg-card);
}

.fg-location-content {
  display: flex;

  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding: clamp(22px, 3vw, 36px);
}

.fg-location-content address {
  margin: 0 0 8px;

  font-style: normal;
}

.fg-map-wrapper {
  position: relative;

  min-height: 390px;

  overflow: hidden;

  border-radius: 16px;

  background: #e8e8e8;
}

.fg-map-wrapper iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}


/* ==========================================================
   TABLETTE
   ========================================================== */

@media screen and (max-width: 1100px) {

  .fg-benefits {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .fg-video-section {
    grid-template-columns: 1fr;
  }

  .fg-video-wrapper {
    min-height: 430px;
  }

  .fg-practical-grid {
    grid-template-columns: 1fr;
  }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media screen and (max-width: 767px) {

  .fg-product-info {
    margin-top: 20px;

    padding-right: 12px;
    padding-left: 12px;
  }


  /* Cartes principales */

  .fg-info-grid-main {
    grid-template-columns: 1fr;
  }

  .fg-info-card {
    flex-direction: column;

    gap: 18px;

    padding: 25px 20px;

    border-radius: 18px;
  }

  .fg-info-icon {
    flex-basis: 48px;

    width: 48px;
    height: 48px;
  }


  /* Avantages */

  .fg-benefits {
    grid-template-columns: 1fr;
  }

  .fg-benefit {
    padding: 19px;
  }


  /* Âge */

  .fg-age-banner {
    flex-direction: column;

    align-items: flex-start;

    padding: 26px 20px;
  }

  .fg-age-number {
    flex-basis: 95px;

    width: 95px;
    height: 95px;
  }

  .fg-age-number span {
    font-size: 38px;
  }


  /* Vidéo */

  .fg-video-section {
    padding: 14px;
  }

  .fg-video-text {
    padding: 16px 8px;
  }

  .fg-video-wrapper {
    min-height: 220px;
  }


  /* FAQ */

  .fg-faq-block {
    padding: 25px 18px;
  }

  .fg-accordion summary {
    min-height: 60px;

    padding: 16px;

    font-size: 13px;
  }


  /* Cartes pratiques */

  .fg-small-card {
    flex-direction: column;

    padding: 23px 19px;
  }


  /* Localisation */

  .fg-location-section {
    grid-template-columns: 1fr;

    padding: 12px;
  }

  .fg-location-content {
    padding: 22px 12px;
  }

  .fg-map-wrapper {
    min-height: 300px;
  }


  /* Boutons */

  .fg-button {
    width: 100%;
  }

}


/* ==========================================================
   PETITS MOBILES
   ========================================================== */

@media screen and (max-width: 420px) {

  .fg-product-info h2 {
    font-size: 23px;
  }

  .fg-info-card,
  .fg-faq-block,
  .fg-small-card {
    border-radius: 16px;
  }

  .fg-benefit {
    gap: 12px;
  }

  .fg-location-content {
    padding-right: 8px;
    padding-left: 8px;
  }

}


/* ==========================================================
   ACCESSIBILITÉ
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .fg-product-info *,
  .fg-product-info *::before,
  .fg-product-info *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}