 /* Reset y básicos */
    * {
      margin: 0; padding: 0; box-sizing: border-box;
    }
    body, html {
      height: 100dvh;
      font-family: 'Inter', sans-serif;
      background: radial-gradient(circle at center, #0a0a14, #000);
      overflow: hidden;
      color: #eee;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
      position: relative;
    }

    /* Estrellas animadas */
    #stars {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
    }
    .star {
      position: absolute;
      border-radius: 50%;
      background: white;
      opacity: 0.8;
      animation: twinkle 3s infinite ease-in-out alternate;
    }
    @keyframes twinkle {
      from {opacity: 0.3;}
      to {opacity: 1;}
    }

    /* Contenedor principal */
    main {
      z-index: 10;
      max-width: 700px;
    }

    /* Logo animado */
  .logo-animated {
  width: 250px;       /* Ajusta tamaño según necesites */
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

    
    /* Texto principal */
    h1 {
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }
    p {
      font-weight: 400;
      font-size: 1.2rem;
      color: #ccc;
      margin-bottom: 2rem;
    }

    /* Cuenta regresiva */
    #countdown {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 2rem;
      font-weight: 600;
      color: #a974ff;
      font-size: 1.4rem;
      letter-spacing: 1px;
    }
    .time-segment {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 60px;
      background: rgba(125, 60, 255, 0.15);
      padding: 10px 12px;
      border-radius: 10px;
      box-shadow: 0 0 8px #7d3cff88;
    }
    .time-segment span:first-child {
      font-size: 2rem;
      color: #f4f4f8;
    }
    .label {
      font-size: 0.85rem;
      color: #ccc;
      margin-top: 4px;
    }

    /* Botón */
    .ptb{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    a.button {
      display: inline-block;
      padding: 14px 30px;
      background: #f4f4f8;
      color: #000;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 0 15px #f4f4f8;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    a.button:hover {
      background-color: #f4f4f8;
      transform: scale(1.05);
      box-shadow: 0 0 25px #f4f4f8;
    }

    footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  padding: 1rem 0;
}


    /* Responsive */
    @media (max-width: 600px) {
      h1 {
        font-size: 2.2rem;
      }
      p {
        font-size: 1rem;
      }
      #countdown {
        font-size: 1.1rem;
        gap: 10px;
      }
      .time-segment {
        min-width: 50px;
        padding: 8px 10px;
      }
      .time-segment span:first-child {
        font-size: 1.6rem;
      }
    }