 * {
    box-sizing: border-box;
    margin:0;
    padding:0;
  }
  
  html, body {
     height:100%;
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    overflow:hidden; 
  }

  body {
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(270deg, #1e1f25, #26272e, #1e1f25);
    background-size: 600% 600%;
    animation: gradientBG 15s ease infinite;
    position: relative;
  }


.grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

#countdown {
    margin-top: 20px; 
    font-size: clamp(1.5rem, 2vw, 2rem); 
    color: #ffffffb0; 
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    width: fit-content;
    padding: 15px 30px;
    display: inline-block;
    transition: ease-in-out 0.2s;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    z-index: 2;
}

.logo {
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    font-size: clamp(2.25rem, 12vw, 7.5rem);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 2px rgba(255,255,255,0.8);
    text-shadow:
      0 0 8px rgba(255,255,255,0.4),
      0 0 16px rgba(255,255,255,0.2),
      0 0 24px rgba(255,255,255,0.1);
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1), text-shadow 0.35s;
    animation: textGradient 4s ease infinite;
    
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


  .logo:hover {
    transform: scale(1.08) rotateZ(1deg) translateY(-6px);
    text-shadow:
      0 0 16px rgba(255,255,255,0.6),
      0 0 32px rgba(255, 255, 255, 0.027),
      0 0 48px rgba(255, 255, 255, 0.021);
  }
    #countdown:hover {
    transform: scale(1.05)  translateY(-1px);
    cursor: help;
  }



.logoSmall, .textTitle {
    font-weight: 300;
    letter-spacing: 0.05em;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    font-size: 2rem;
}
.logoSmall {
    font-size: 3rem;

}
.logoSmall:hover {
    transform: scale(1.05);
    cursor: pointer;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.6);
}

.text {
    max-width: 800px;
    background: rgba(30, 31, 37, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: left;
    color: rgba(255, 255, 255, 0.85);
    overflow-y: auto;
    max-height: 60vh;
}

.text h2 {
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text ul {
    margin: 0.8rem 0 1.5rem 1.5rem;
}

.text li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.text::-webkit-scrollbar {
    width: 8px;
}

.text::-webkit-scrollbar-track {
    background: rgba(30, 31, 37, 0.5);
    border-radius: 4px;
}

.text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.text::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .text {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 70vh;
    }
    
    .text h2 {
        font-size: 1.2rem;
    }
}




  a {
    margin: 0 10px;
    text-decoration: none;
    color: #b4b4b4b2;
  }

    footer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fcfafb;
    z-index: 1000;
    user-select: none;
    }  


