main{
  text-align: center;
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: auto ;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  max-height: calc(110vh - 250px);
}

/* Vidéo en "cover" : prend toute la largeur/hauteur du div */
.bg-video {
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;     /* important pour couvrir sans déformer */
  object-position: center;
}

/* Dégradé au-dessus de la vidéo */
.video-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* Contenu au-dessus (optionnel) */
.video-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 24px;
}
.neon-line-wrap{
  position: relative;
  display: inline-block;
  padding: 26px 0; /* espace pour la ligne */
}

/* La ligne néon */
.neon-line-wrap::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 2px;
  z-index: 0;
  pointer-events:none;

  background: linear-gradient(
    to right,
    rgba(255,210,80,0),
    rgba(255,235,160,.95),
    rgba(255,210,80,0)
  );

  box-shadow:
    0 0 10px rgba(255,210,80,.55),
    0 0 28px rgba(255,210,80,.35),
    0 0 55px rgba(255,210,80,.20);
}

/* Le petit point néon (dot) sur la ligne */
.neon-line-wrap::after{
  content:"";
  position:absolute;
  left: 84%;              /* <-- déplace le point (ex: 15%, 50%, 84%) */
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  z-index: 0;
  pointer-events:none;

  background: radial-gradient(circle,
    rgba(255,255,255,.95) 0%,
    rgba(255,235,160,.9) 35%,
    rgba(255,210,80,.35) 60%,
    rgba(255,210,80,0) 75%
  );

  box-shadow:
    0 0 8px rgba(255,235,160,.85),
    0 0 20px rgba(255,210,80,.55),
    0 0 45px rgba(255,210,80,.35);
}

/* Le bouton doit être au-dessus */
.btn-gold{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 85px;
  border-radius: 4px;

  font: 900 34px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #0d0d0d;
  text-decoration: none;

  background:
    linear-gradient(to bottom, rgba(255,255,255,.55), rgba(255,255,255,0) 35%),
    linear-gradient(to bottom, #ffe66a 0%, #ffd12d 40%, #ffbf00 100%);
  border: 1px solid rgba(255,255,255,.25);

  box-shadow:
    0 18px 40px rgba(0,0,0,.55),
    inset 0 2px 0 rgba(255,255,255,.65),
    inset 0 -4px 0 rgba(0,0,0,.25);
}

/* Brillance + petits points (étincelles) */
.btn-gold::before{
  content:"";
  position:absolute;
  inset:-18px -40px;
  z-index:-1;

  /* halo + poussière */
  background:
    radial-gradient(closest-side, rgba(255,200,0,.45), rgba(255,200,0,0) 70%) 50% 55%/85% 120% no-repeat,
    radial-gradient(circle, rgba(255,240,190,.9) 0 2px, rgba(255,240,190,0) 3px) 15% 35%/120px 80px repeat,
    radial-gradient(circle, rgba(255,240,190,.7) 0 1px, rgba(255,240,190,0) 2px) 60% 40%/160px 100px repeat;

  opacity:.55;
  filter: blur(.2px);
  pointer-events:none;
}
.action-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color: #000;
}
.action-2 h2.title {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 45px;
}
.action-2 .sub-title {
    font-size: 25px;
    font-weight: bold;
}
.section-2 .cta-msg {
        max-width: 800px;
    text-align: center;
    margin: auto;
    margin-top: 45px;
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 45px;
}

/* Optional: background like the screenshot */
.features-strip{
  background: #000;
  /* background: radial-gradient(1200px 500px at 50% 0%, rgba(255,255,255,.06), rgba(0,0,0,0)),
              linear-gradient(#0b1220, #070b14); */
                  padding-top: 65px !important;
}

/* Card container */
.feature-card{
  text-align: center;
}

/* Image frame like a game UI */
.feature-media{
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 10px 24px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.12);
        margin: 0 50px;
        box-shadow:
    /* tes ombres existantes */
    0 10px 24px rgba(0, 0, 0, .55),
    inset -7px 19px 4px 2px rgb(176 24 24),

    /* bordure 2 (noir) */
    0 0 0 2px #000,

    /* bordure 3 (beige) */
    0 0 0 4px #e6d5a8;
}

/* Image sizing */
.feature-media img{
  width: 100%;
  height: 170px;           /* adjust to match your design */
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.section-2 .btn-gold {
    margin-top: 25px;
}

/* Soft inner glow */
.feature-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.25)),
    radial-gradient(closest-side at 50% 0%, rgba(255,255,255,.12), rgba(255,255,255,0) 60%);
}

/* Title under image */
.feature-title{
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}

/* Optional: small top/bottom separators like UI */
.features-strip .container{
  position: relative;
}
.features-strip .container::before,
.features-strip .container::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.features-strip .container::before{ top: -8px; }
.features-strip .container::after{ bottom: -8px; }




/* --- Title bar like screenshot --- */
.features-heading{
  position: relative;
  margin: 0 0 22px;
  padding: 14px 0;
  text-align: center;

  /* look & feel */
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: clamp(26px, 3vw, 44px);
  color: rgba(235, 245, 255, .92);
  text-shadow:
    0 2px 0 rgba(0,0,0,.35),
    0 10px 24px rgba(0,0,0,.6);

  /* subtle “metal” strip behind title */
  background:
    linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,0) 40%),
    radial-gradient(1200px 80px at 50% 10%, rgba(255,255,255,.07), rgba(255,255,255,0) 60%),
    linear-gradient(to bottom, rgba(7,10,16,.0), rgba(7,10,16,.55), rgba(7,10,16,.0));
}

/* left & right long lines (double line feeling) */
.features-heading::before,
.features-heading::after{
  content:"";
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  height: 16px;
  pointer-events:none;
  opacity: .95;
}

.features-heading::before{
  left: 0;
  background:
    /* top line */
    linear-gradient(to right, rgba(190,210,230,0), rgba(200,220,240,.70), rgba(200,220,240,0)) 0 4px/100% 2px no-repeat,
    /* bottom line */
    linear-gradient(to right, rgba(190,210,230,0), rgba(200,220,240,.35), rgba(200,220,240,0)) 0 10px/100% 1px no-repeat,
    /* tiny glow */
    radial-gradient(closest-side, rgba(200,220,240,.18), rgba(200,220,240,0) 70%) 70% 50%/70% 100% no-repeat;
}

.features-heading::after{
  right: 0;
  background:
    linear-gradient(to left, rgba(190,210,230,0), rgba(200,220,240,.70), rgba(200,220,240,0)) 0 4px/100% 2px no-repeat,
    linear-gradient(to left, rgba(190,210,230,0), rgba(200,220,240,.35), rgba(200,220,240,0)) 0 10px/100% 1px no-repeat,
    radial-gradient(closest-side, rgba(200,220,240,.18), rgba(200,220,240,0) 70%) 30% 50%/70% 100% no-repeat;
}

/* metallic “brackets” near the text */
.features-heading span{ position: relative; z-index: 2; } /* (optional if you wrap text) */

.features-heading{
  --bracket-w: 34px;
  --bracket-h: 10px;
}

/* inner brackets using background layers */
.features-heading{
  background:
    /* brackets left */
    linear-gradient(135deg, rgba(210,230,250,.55), rgba(210,230,250,0) 65%) calc(50% - 190px) 50%/var(--bracket-w) var(--bracket-h) no-repeat,
    linear-gradient(225deg, rgba(210,230,250,.55), rgba(210,230,250,0) 65%) calc(50% - 160px) 50%/var(--bracket-w) var(--bracket-h) no-repeat,

    /* brackets right */
    linear-gradient(45deg, rgba(210,230,250,.55), rgba(210,230,250,0) 65%) calc(50% + 160px) 50%/var(--bracket-w) var(--bracket-h) no-repeat,
    linear-gradient(315deg, rgba(210,230,250,.55), rgba(210,230,250,0) 65%) calc(50% + 190px) 50%/var(--bracket-w) var(--bracket-h) no-repeat,

    /* subtle “metal” strip behind title */
    linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,0) 40%),
    radial-gradient(1200px 80px at 50% 10%, rgba(255,255,255,.07), rgba(255,255,255,0) 60%),
    linear-gradient(to bottom, rgba(7,10,16,.0), rgba(7,10,16,.55), rgba(7,10,16,.0));
}

/* responsive: shorten side lines on small screens */
@media (max-width: 576px){
  .features-heading::before,
  .features-heading::after{ width: 28%; }
  .features-heading{
    background-position:
      calc(50% - 140px) 50%, calc(50% - 115px) 50%,
      calc(50% + 115px) 50%, calc(50% + 140px) 50%,
      0 0, 0 0, 0 0;
  }
}


