    * { box-sizing: border-box; }

    :root {
      --blue: #1d63b1;
      --blue-dark: #2349a7;
      --light-blue: #a8deef;
      --bg-main: #f6f6f6;
      --lamp-off: #2a2a2a;
    }
    
.logo {
    width: clamp(180px, 70vw, 400px);
}

    body {
      margin: 0;
      background: #111;
      font-family: "Montserrat", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
    }

    .page-wrap {
      min-height: 100vh;
      min-height: 100svh;
    }

    .mobile-stage {
      width: 100%;
      min-height: 100vh;
      min-height: 100svh;
      background: #fff;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .top-black-bar {
      height: 78px;
      background: #000;
    }

    .logo-area {
      background: #000;
      text-align: center;
      padding: 8px 10px 16px;
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .logo-mexico {
      color: #fff;
      font-size: 14px;
      letter-spacing: 7px;
      margin-bottom: 4px;
      font-weight: 500;
    }

    .logo-stellar {
      font-size: clamp(48px, 10vw, 60px);
      line-height: .9;
      font-weight: 900;
      letter-spacing: 1px;
      background: linear-gradient(180deg, #67bbff 0%, #2f7cda 45%, #123f92 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-transform: uppercase;
    }

    .logo-autofest {
      color: #fff;
      font-size: clamp(28px, 6vw, 38px);
      line-height: 1;
      font-weight: 900;
      margin-top: 2px;
      text-transform: uppercase;
    }

  .game-area {
      background-image: url(../imgs/fondo.jpg);
      background-repeat: no-repeat;
      background-size: 100% 100%; 
      background-position: center;
      position: relative;
      padding: 44px 14px 40px;
      flex: 1 0 auto;
  }

    .boxstellar{
      max-width: 600px;
      margin: 0 auto;
    }

    .lights-row {
      position: relative;
      z-index: 2;
      margin-bottom: 24px;
    }

    .tower {
      background: #000;
      border-radius: 14px;
      padding: 12px 7px;
      position: relative;
      min-height: 252px;
    }

    .lamp {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background: var(--lamp-off);
      margin-bottom: 12px;
    }

    .lamp:last-child { margin-bottom: 0; }

    #controls{
        max-width: 900px;
        margin: 0 auto;
    }

    .circle-btn {
      width: clamp(118px, 30vw, 160px);
      height: clamp(118px, 30vw, 160px);
      border-radius: 50%;
      border: 5px solid var(--light-blue);
      background: transparent;
      color: var(--blue-dark);
      font-weight: 900;
      font-size: clamp(22px, 6vw, 44px);
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      line-height: 1;
      padding: 0;
    }

    .footer-brand {
      min-height: 108px;
      background: #000;
      color: #fff;
      text-align: center;
      font-weight: 900;
      font-size: clamp(24px, 6vw, 40px);
      line-height: 1.1;
      padding: 28px 14px 32px;
      margin-top: auto;
    }

    .footer-brand .invite {
      font-size: .9em;
      margin-right: 6px;
    }

.terms {
    margin-top: 1.25rem;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.terms label {
    font-weight: 400;
}

.terms input[type="checkbox"] {
    width: 20px;
    min-height: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--blue);
}

.terms a{
    color: var(--blue);
}
    
    .btn-stellar{
        width: 230px;
    }

    .footer-brand .radio { font-weight: 700; }
    .footer-brand .disney { font-style: italic; }

    @media (min-width: 768px) {
      .top-black-bar {
        height: 64px;
      }

      .logo-area {
        padding: 14px 10px 20px;
      }

      .logo-mexico {
        font-size: 18px;
        letter-spacing: 9px;
      }

      .logo-stellar {
        font-size: 72px;
      }

      .logo-autofest {
        font-size: 42px;
      }

      .game-area {
        padding: 60px 24px 60px;
        min-height: auto;
      }

      .tower {
        min-height: 340px;
        padding: 16px 10px;
      }

      .lamp {
        margin-bottom: 16px;
      }

      .circle-btn {
        width: 190px;
        height: 190px;
        font-size: 48px;
      }

      .footer-brand {
        min-height: 130px;
        font-size: 44px;
      }

      .mobile-stage {
        /*min-height: 880px;*/
        border-radius: 18px;
      }
    }

    @media (max-width: 576px) {

      .btn-stellar{
          width: 190px;
      }

     .custom-label
      {
        font-size: 15px !important;
      }

      
    }
