    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: url('../../images/bg.png') no-repeat center center fixed;
      background-size: cover;
    }

    .container {
      position: relative;
      width: 100vw;
      height: 100vh;
    }

    .title-block {
      position: absolute;
      top: 50%;
      left: 5vw;
      transform: translateY(-50%);
      color: #0a1b3c;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .title-block h1 {
      font-size:4vw;
      font-weight: 800;
      margin: 0;
    }

    .title-block p {
      font-size: 2.8vw;
      margin: 0.6em 0;
    }

    .title-block .bold {
      font-weight: bold;
    }

    .right-column {
      position: absolute;
      top: 50%;
      right: 5vw;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .airplane {
      width: 35vw;
      height: auto;
      margin-bottom: 6vh;
      margin-top: -10vh;
    }

    .play-button {
      margin-bottom: 5vh;
    }

    .play-button a {
      display: inline-block;
      padding: 0.5em 1.5em;
      background-color: #0a1b3c;
      color: white;
      font-size: 3.5vw;
      font-weight: bold;
      border-radius: 80px;
      text-decoration: none;
      white-space: nowrap;
    }
    
     .play-button2 a {
      display: inline-block;
      padding: 0.5em 1.5em;
      background-color: #0a1b3c;
      color: white;
      font-size: 1vw;
      font-weight: bold;
      border-radius: 80px;
      text-decoration: none;
      white-space: nowrap;
    }
    
    .play-button1 {
      background-color: #0a1b3c;
      color: white;
      font-size: 3.5vw;
      font-weight: bold;
      border-radius: 80px;
      text-decoration: none;
      white-space: nowrap;
    }

    .footer-buttons {
      display: flex;
      flex-direction: column;
      gap: 1em;
      align-items: center;
      margin-top: 3vh;
    }

    .footer-buttons a {
      display: inline-block;
      padding: 0.6em 1.5em;
      background-color: #0a1b3c;
      color: white;
      font-size: 1.2vw;
      border-radius: 80px;
      text-decoration: none;
      text-align: center;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .title-block h1 {
        font-size: 4vw;
      }
      .title-block p {
        font-size: 3vw;
      }
      .play-button a {
        font-size: 4vw;
        padding: 1em 2em;
      }
      .footer-buttons a {
        font-size: 3vw;
        padding: 0.8em 1.5em;
      }
      .airplane {
        width: 52vw;
        margin-top: -10vh;
      }
    }
    
    
    
    
    .form-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100vh;
      justify-content: center;
      color: #0a1b3c;
    }

    .form-wrapper h1 {
      font-size: 5vw;
      font-weight: 800;
      margin-bottom: 6vh;
      text-align: center;
    }

    .form-page {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3vw;
      width: 100%;
    }

    .form-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.2vh;
    }

    .form-row {
      margin-top: 1vh;
      display: flex;
      align-items: center;
      gap:1vw;
      max-width: 50vw;
    }

    label {
      font-weight: bold;
      font-size: 1.4vw;
      min-width: 120px;
    }

    input[type="text"], input[type="email"] {
      padding: 1vh;
      font-size: 1.5vw;
      border: none;
      background-color: #f2f7fa;
      border-radius: 4px;
      width: 40vw;
    }

    .checkbox-row {
      display: flex;
      align-items: flex-start;
      margin-top: 3vh;
      gap: 2vw;
      width: 50vw;
    }

    .checkbox-row input[type="checkbox"] {
      transform: scale(1.5);
      margin-top: 0.5em; 
      flex-shrink: 0;
    }

    .checkbox-row span {
      font-size: 1.8vw;
      font-weight: normal;
      line-height: 1.5;
      overflow-wrap: break-word;
      display: inline-block;
      width: 100%;
    }

    .submit-button {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .submit-button button {
      background-color: #0a1b3c;
      color: white;
      font-size: 3vw;
      font-weight: bold;
      padding: 0.4em 0.8em;
      border: none;
      border-radius: 16px;
      cursor: pointer;
    }

    
    /* Fond spécifique pour la page Bravo */
.bravo-background {
  background: url('../../images/bg.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: #0a1b3c;
  text-align: center;
}

/* Conteneur centré */
.bravo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Titres */
.bravo-title {
  font-size: 4vw;
  font-weight: bold;
  margin: 0;
}

.bravo-subtitle {
  font-size: 2.5vw;
  font-weight: bold;
  margin: 1vh 0;
}

/* Texte du lot gagné */
.bravo-lot {
  color: #ff7a7a;
  font-size: 3vw;
  font-weight: bold;
  margin-top: 3vh;
}

/* Responsive */
@media (max-width: 768px) {
  .bravo-title {
    font-size: 7vw;
  }

  .bravo-subtitle {
    font-size: 5vw;
  }

  .bravo-lot {
    font-size: 6vw;
  }
}

/* === Page de fin === */
.end-background {
  background: url('../../images/bg.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #0a1b3c;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.end-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
}

.end-intro {
  font-size: 2.5vw;
  margin-bottom: 2vh;
  font-weight: bold;
}
.end-intro h1 {
      font-size:4vw;
      font-weight: 800;
      margin: 0;
}

.end-middle {
  font-size: 2.5vw;
  font-weight: bold;
  margin-bottom: 2vh;
}

.end-highlight {
  font-size: 4vw;
  color: #ff7a7a;
  font-weight: bold;
  margin: 1vh 0;
}

.end-subtitle {
  font-size: 2vw;
  margin-bottom: 0vh;
  font-weight: bold;
}

.end-prizes {
  display: flex;
  gap: 5vw;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1vh;
}

.end-prize {
  max-width: 30vw;
  font-size: 1.3vw;
  color: #ff7a7a;
  margin-bottom: 1vh;
}
.end-prize h1 {
  font-size: 4vw;
  font-weight: bold;
  margin-bottom: 1vh;
}
.end-prize h3 {
  font-size: 2vw;
  font-weight: bold;
}
.end-prize p {
  font-size: 2vw;
  font-weight: bold;
  margin-bottom: 2vh;
}

/* Responsive */
@media (max-width: 768px) {
  .end-intro, .end-middle, .end-subtitle {
    font-size: 4vw;
  }

  .end-highlight {
    font-size: 6vw;
  }

  .end-prize h3 {
    font-size: 5vw;
  }

  .end-prize {
    font-size: 4vw;
  }

  .end-prizes {
    flex-direction: column;
    align-items: center;
  }
}




    
.bg-pink {
  background: url(../../images/bg.png) no-repeat center center;
}

.wrap {
  padding: 20px 0; }

body {
  min-height: 100vh; }

header {
  display: flex;
  align-items: center;
  flex-direction: column; }
  header .logo {
    max-width: 160px;
    margin-bottom: 25px;
    width: 100%; }
    @media (max-width: 767px) {
      header .logo {
        max-width: 150px; } }
    header .logo img {
      width: 100%; }
  header h1 {
    background: -webkit-linear-gradient(45deg, #6b115f, #b81d49 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 70px;
    text-transform: uppercase;
    position: relative;
    line-height: 100%; }
    @media (max-width: 1200px) {
      header h1 {
        font-size: 60px; } }
    @media (max-width: 767px) {
      header h1 {
        font-size: 48px; } }
    @media (max-width: 580px) {
      header h1 {
        position: relative;
        text-align: center;
        line-height: 100%; }
        header h1 img {
          left: -10px; } }

.memory{
    margin-top: -40px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.memory img {
    max-width: 1000px;
}

.max{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.max img {
    float: left;
    max-width: 400px;
    width: 100%;
    height: auto;
}
.column {
    width: 100%;
    align-items: center;
}
.end{
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
}
.end img {
    align-items: center;
    float: left;
    max-width: 800px;
    width: 50%;
    margin-bottom: auto;
    margin-top: auto;
}
.end a {
    
    align-items: center;
    float: left;
    max-width: 800px;
    height: auto;
    width: 50%;
    padding: 1em;
    margin-bottom: auto;
    margin-top: auto;
}

.titi {
  display: flex;
  justify-content: center; 
}
.cta {
  display: flex;
  justify-content: center; 
}

@media (max-width: 1580px) {
    .cta {
      margin-bottom: 60px; 
    } 
 }
  .cta .btn-cta {
    display: flex;
    content: '';
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Avenir';
    background: #ffffff;
    border-radius: 80px;
    text-align: center;
    color: #851f6e;
    font-weight: 900;
    line-height: 100%; 
 }

 .bravo .title, .losing .title{
  display: flex;
  align-items: center;
  flex-direction: column;
 }
   .bravo .title img, .losing .title img{
       width: 50%;
   }
    .cadeau {
  font-size: 25px;
  font-weight: 700;
  display: flex;
  justify-content: end;
  padding: 40px 0;
  position: relative;
  align-items: start; }
  .cadeau .noeud {
    width: 100%; }
    .cadeau .noeud img {
      width: 100%; }
  .cadeau .circle-price {
    max-width: 50%;
    width: 100%;
    right: 40px;
    position: absolute; }
    .cadeau .circle-price img {
      width: 100%;
      max-width: 42%;
      margin-left: 18%;
      display: block;
      margin-top: -100px; }
      @media (max-width: 1680px) {
        .cadeau .circle-price img {
          margin-top: -35px; } }
      @media (max-width: 992px) {
        .cadeau .circle-price img {
          margin-top: 0px;
          max-width: 68%; } }
      @media (max-width: 580px) {
        .cadeau .circle-price img {
          margin: auto;
          max-width: 68%; } }
      @media (max-width: 480px) {
        .cadeau .circle-price img {
          margin: auto;
          max-width: 80%; } }
  @media (max-width: 580px) {
    .cadeau {
      justify-content: center;
      margin: 15px 0;
      padding: 10px 0; }
      .cadeau .circle-price {
        right: unset;
        max-width: 63%; } }

.challenge {
  position: relative;
  z-index: 1;
  margin: -22px auto 28px; }
  .challenge h2 {
    font-size: 92px;
    color: #fff;
    line-height: 100%;
    font-family: 'Amithen', 'Avenir', Arial;
    font-weight: normal; }
  @media (max-width: 1200px) {
    .challenge {
      margin-top: -15px; }
      .challenge h2 {
        font-size: 80px; } }
  @media (max-width: 580px) {
    .challenge {
      margin-top: 0px; }
      .challenge h2 {
        font-size: 50px; } }

footer {
  font-size: 23px;
  color: #fff;
  font-family: 'Gilroy';
  font-weight: normal;
  line-height: 30px;
  display: flex;
  justify-content: end;
  padding: 0 15px; }
  @media (max-width: 992px) {
    footer {
      font-size: 20px;
      line-height: 26px; } }

body.bg-default {
  background: url(../../images/bg.png) no-repeat center center;
  background-size: cover;
  padding: 25px 0; }
  @media (max-width: 992px) {
    body.bg-default {
    background: url(../../images/bg.png) no-repeat center center;
      background-size: cover; } }

.bg-default .card {
    background-color: transparent;
  width: 80%;
  border-radius: 0px; }
  @media (max-width: 768px) {
    .bg-default .card {
      width: 90%; } }

.games .right-game {
  color: #000; }
  .games .right-game .title-timer {
    font-size: 45px;
    color: #a30854;
    font-weight: 900;
    font-family: 'Avenir'; }
  .games .right-game .timer {
    font-size: 25px;
    margin-bottom: 0; }

.home .cta {
  margin-bottom: 10px; }

.text-danger {
  color: #e40f1e; }



.hidePc {
  display: none; }

.hideMob {
  display: flex; }

.show580 {
  display: none !important; }

@media (max-width: 1024px) {
  body, html {
    height: 100%; } }
@media (max-width: 992px) {
  .hidePc {
    display: flex; }

  .hideMob {
    display: none; }

  .show580 {
    display: none !important; } }
@media (max-width: 580px) {
  .hidePc {
    display: none; }

  .show580 {
    display: flex !important; }

  .cadeau .noeud img {
    margin-bottom: 0; } }
@font-face {
  font-family: 'Avenir';
  src: url("../font/AvenirLTStd-Black.woff2") format("woff2"), url("../font/AvenirLTStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Avenir';
  src: url("../font/AvenirLTStd-Book.woff2") format("woff2"), url("../font/AvenirLTStd-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Avenir';
  src: url("../font/AvenirLTStd-Roman.woff2") format("woff2"), url("../font/AvenirLTStd-Roman.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Amithen';
  src: url("../font/Amithen.woff2") format("woff2"), url("../font/Amithen.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Gilroy';
  src: url("../font/Gilroy-Regular.woff2") format("woff2"), url("../font/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Gilroy';
  src: url("../font/Gilroy-ExtraBold.woff2") format("woff2"), url("../font/Gilroy-ExtraBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Gilroy';
  src: url("../font/Gilroy-Medium.woff2") format("woff2"), url("../font/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
h1 {
  font-family: 'Avenir', 'Arial';
  font-weight: 900; }

.games .right-game {
  width: 100%; }
  .games .right-game .timer label#seconds {
    font-size: 100px;
    line-height: normal !important;
    text-shadow: unset;
    color: #378bbc;
    font-weight: 900;
    font-family: 'Avenir'; }
  .games .right-game .text-second {
    line-height: 100%;
    text-shadow: unset;
    color: #0a1b3c;
    font-size: 50px; }
    @media (max-width: 992px) {
      .games .right-game .text-second {
        font-size: 25px; } }
.games .main-game {
  justify-content: center; }
  .games .main-game .center-game {
    width: 100%;
    min-height: 1px;
    background: transparent;
    margin: 0 !important; }
@media (max-width: 780px) {
  .games .right-game {
    position: static; } }

.games .right-game .text-second {
  font-size: 30px !important; }

body.games .right-game .title-timer {
  line-height: 100%;
  padding-top: 0;
  font-size: 22px; }
body.games .right-game .timer {
  line-height: 100%; }
body.games .right-game .timer label#seconds {
  font-size: 60px; }
body.games .btn-valider label {
  font-size: 44px;
  margin: 0; }
body.games .right-game .text-second {
  font-size: 15px !important; }
body.games .main-game .center-game {
  padding: 0; }

.bg-pink-900 {
  background: url(../../images/bg.png) no-repeat center center;
  min-height: 100vh; }

.bravo .h-100vh,
.losing .h-100vh {
  height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;  
  align-items: center;
}
.bravo h1,
.losing h1 {
  font-family: 'Avenir';
  font-weight: 900;
  font-size: 53px;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  margin: 200px 0 30px; 
}
.bravo .card,
.losing .card {
    border: none;
  background-color: transparent;
  margin: 0 0 65px;
  max-width: 1024px;
  width: 90%; 
}
.bravo .bg-top,
.losing .bg-top {
  background: url(../../img/bg-header.png) no-repeat center;
  background-position: top;
  background-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; }




.bravo .card-body,
.losing .card-body {
  display: flex;
  align-items: center;
  padding: 36px 40px; }
  @media (max-width: 1080px) {
    .bravo .card-body,
    .losing .card-body {
      padding: 15px; } }
  @media (max-width: 600px) {
    .bravo .card-body,
    .losing .card-body {
      flex-direction: column;
      align-items: start;
      margin-bottom: 15px; } }
  .bravo .card-body .item:nth-child(2),
  .losing .card-body .item:nth-child(2) {
    padding-left: 25px;
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: start; }
    @media (max-width: 600px) {
      .bravo .card-body .item:nth-child(2),
      .losing .card-body .item:nth-child(2) {
        max-width: 100%;
        width: 100%; } }
    .bravo .card-body .item:nth-child(2) .logo,
    .losing .card-body .item:nth-child(2) .logo {
      width: 120px; }
  .bravo .card-body .item,
  .losing .card-body .item {
    width: 35%; }
    @media (max-width: 600px) {
      .bravo .card-body .item,
      .losing .card-body .item {
        max-width: 300px;
        width: 100%;
        margin-bottom: 20px; } }
    .bravo .card-body .item img,
    .losing .card-body .item img {
      width: 100%; }
  .bravo .card-body h2,
  .losing .card-body h2 {
    background: -webkit-linear-gradient(45deg, #6b115f, #b81d49 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    text-transform: uppercase;
    font-family: "Gilroy";
    font-weight: 700; }
    @media (max-width: 1320px) {
      .bravo .card-body h2,
      .losing .card-body h2 {
        font-size: 55px; } }
    @media (max-width: 1200px) {
      .bravo .card-body h2,
      .losing .card-body h2 {
        font-size: 40px; } }
  .bravo .card-body p,
  .losing .card-body p {
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    color: #851f6e;
    width: 100%; }
    @media (max-width: 1080px) {
      .bravo .card-body p,
      .losing .card-body p {
        font-size: 20px;
        line-height: 28px; } }
    @media (max-width: 992px) {
      .bravo .card-body p,
      .losing .card-body p {
        font-size: 36px;
        line-height: normal; } }
    @media (max-width: 768px) {
      .bravo .card-body p,
      .losing .card-body p {
        font-size: 26px; } }

.date-look {
  background: linear-gradient(145deg, #681160, #bf2047);
  font-family: "Gilroy";
  font-weight: 900;
  font-size: 40px;
  color: #fff;
  padding: 0 25px; }
  @media (max-width: 1920px) {
    .date-look {
      margin-bottom: 25px;
      display: block;
      text-align: center; } }
  @media (max-width: 580px) {
    .date-look {
      font-size: 40px; } }


#inscription-form .form-control {
  border: 1px #8d8d8d solid;
  height: 40px;
  line-height: 26px;
  background: #f3f3f3;
  border-radius: 0px;
  font-size: 18px; }
  @media (max-width: 1024px) {
    #inscription-form .form-control {
      font-size: 16px; } }
#inscription-form label {
  font-size: 16px; }
#inscription-form .fileSubmit .btn {
  display: none; }
#inscription-form .fileSubmit .btn-file {
  background: linear-gradient(145deg, #681160, #bf2047);
  color: #fff;
  padding: 5px 15px;
  line-height: 100%;
  cursor: pointer;
  white-space: nowrap; }
  @media (max-width: 580px) {
    #inscription-form .fileSubmit .btn-file {
      font-size: 18px; } }
#inscription-form .fileSubmit .file-selected {
  white-space: nowrap;
  font-size: 15px;
  width: 100%;
  display: block;
  margin: 8px;
  text-overflow: ellipsis;
  overflow: hidden; }
#inscription-form .cta {
  margin-bottom: 0; }

.form .card-body input[type="checkbox"] {
  width: 20px;
  height: 20px; }

.submit.cta input[type="submit"] {
  background: url("../../img/play.png") no-repeat right center;
  background-size: 50px;
  font-size: 45px;
  margin: 25px 0;
  padding: 5px 80px 5px 0; }
  @media (max-width: 768px) {
    .submit.cta input[type="submit"] {
      font-size: 40px;
      padding-right: 58px !important; } }
  .submit.cta input[type="submit"]:focus {
    outline: none;
    border: none !important;
    box-shadow: none;
    border-color: #fff !important; }

.btn-valider label {
  background-size: 50px;
  margin: 25px 0;
  padding: 20px 80px 20px 0;
  text-shadow: none !important;
  text-align: center;
  color: #0a1b3c;
  font-weight: 900;
  line-height: 100%;
  font-size: 60px;
  font-family: 'Avenir'; }
  @media (max-width: 768px) {
    .btn-valider label {
      font-size: 40px;
      padding-right: 58px !important; } }
  .btn-valider label:focus {
    outline: none;
    border: none !important;
    box-shadow: none;
    border-color: #fff !important; }

.btn-valider label::after {
  display: none; }

.btn-valider {
  padding-top: 0 !important; }

.losing.lose-game .card-body {
  padding: 36px 40px 66px; }
  @media (max-width: 1080px) {
    .losing.lose-game .card-body {
      padding: 15px; } }
  .losing.lose-game .card-body .item {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start; }
    .losing.lose-game .card-body .item p {
      line-height: normal;
      text-align: center; }
    .losing.lose-game .card-body .item h2 {
      margin-bottom: 60px; }
    .losing.lose-game .card-body .item .logo {
      width: 200px; }
      @media (max-width: 1080px) {
        .losing.lose-game .card-body .item .logo {
          width: 150px; } }
