/* Animated Gradient Background */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    color: #fff;
    background: linear-gradient(-45deg, #1a2a6c, #b21f1f, #fdbb2d, #0f2027);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    padding: 20px;
    max-width: 700px;
    width: 100%;
}

h1, h2 {
    margin: 20px 0;
}

.glow {
    text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 15px #00ffff;
}

#countdown {
    font-size: 2.5rem;
    margin: 20px 0;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 10px 15px;
    padding: 12px 20px;
    font-size: 1.2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.trk-btn{
    align-items: center;
    box-sizing: border-box;
    background-color: #00d094;
    border-color: #011610;
    color: #0C263A;
    transition: all 0.5s ease-out;
    width: 170px;
    border: 3px solid #02140f;
    padding: 1rem 1.75rem;
    font-weight: bolder;
    text-decoration: none;
}