  body {
    background-color: #890606;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    font-family: "Changa One", sans-serif;
  }

  body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 2;
    pointer-events: none;
  }

  /* --- TITRE --- */
  .crt-text {
    position: relative;
    z-index: 1;
    font-size: 90px;
    text-transform: uppercase;
    color: #a7c875;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1.1;
    text-align: center;

    text-shadow:
      3px 0px 0px rgba(13, 105, 44, 0.7),
      -3px 0px 0px rgba(167, 200, 117, 0.7),
      0 0 20px rgba(167, 200, 117, 0.5);

    animation: turn-on 3s linear infinite;
  }

  /* --- LE DOT --- */
  .dot {
    display: inline-block;
    color: #0d692c;
    text-shadow: 2px 0px 0px rgba(13, 105, 44, 0.7), -2px 0px 0px rgba(167, 200, 117, 0.7);
    animation: blink 1s steps(1) infinite;
  }

  /* --- SECTION LOADING --- */
  .loading-container {
    position: relative;
    z-index: 1;
    margin-top: 100px;
    width: 150px;
    transform: translateX(60px);
    text-align: left;
  }

  .loading-text {
    font-size: 1rem;
    color: #a7c875;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow:
      1px 0px 0px rgba(13, 105, 44, 0.7),
      -1px 0px 0px rgba(167, 200, 117, 0.7),
      0 0 10px rgba(167, 200, 117, 0.5);
  }

  .progress-bar-border {
    width: 100%;
    height: 12px;
    border: 1px solid #a7c875;
    padding: 2px;
    box-sizing: border-box;
    box-shadow:
      1px 0px 0px rgba(13, 105, 44, 0.7),
      -1px 0px 0px rgba(167, 200, 117, 0.7);
  }

  .progress-bar-fill {
    height: 100%;
    background-color: #0d692c;
    width: 0%;
    box-shadow: 0 0 5px rgba(13, 105, 44, 0.8);

    animation: loading-stuck 12s forwards;
  }

  /* --- ANIMATIONS --- */

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  @keyframes turn-on {
    0% { opacity: 0.9; text-shadow: 3px 0px 0px rgba(13,105,44,0.7), -3px 0px 0px rgba(167,200,117,0.7), 0 0 20px rgba(167,200,117,0.5); }
    15% { opacity: 1; transform: scale(1.002); }
    20% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 0.95; filter: blur(0.5px); }
    100% { opacity: 0.9; }
  }

  @keyframes loading-stuck {
    0% { width: 0%; }
    20% { width: 20%; }
    40% { width: 45%; }
    60% { width: 55%; }
    100% { width: 55%; }
  }

  /* --- AJUSTEMENTS MOBILE --- */
  @media (max-width: 768px) {
    .crt-text {
      font-size: 3.5rem;
      text-align: center;
      padding: 0 20px;
    }

    .loading-container {
      margin-top: 50px;
      transform: translateX(0);
      margin-left: auto;
      margin-right: auto;
    }
  }