
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    /* height: 100%; */
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(ellipse at top, #0a0a2a 0%, #000 100%);
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 900px;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    background: linear-gradient(to right, #1E90FF, #00BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    color: #dcdcdc;
    margin-bottom: 2rem;
}

p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.1);
    backdrop-filter: blur(5px);
}

p strong {
    color: #00BFFF;
}

.romanced {
    font-style: italic;
    font-size: 1.2rem;
    color: #ffffff;
    background: linear-gradient(145deg, rgba(30,144,255,0.1), rgba(0,191,255,0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    color: white;
    background: transparent;
    border: 2px solid #00BFFF;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    overflow: hidden;
}

.cta-button a{
    text-decoration: none;
    color: white;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, #1E90FF, #00BFFF, #4682B4);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #fff;
    border-color: transparent;
}

#countdown {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: white;
}

.socials {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.socials a {
    color: #00BFFF;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: #ffffff;
}

footer {
    text-align: center;
    padding: 1rem;
    color: #888;
    font-size: 0.9rem;
}