:root {
    --primary-color: #e50914;
    --primary-hover: #f40612;
    --secondary-color: #0088cc;
    --secondary-hover: #0077b5;
    --text-color: #ffffff;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-gold: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    background-color: #000;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    animation: fadeIn 1s ease-out;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    font-family: 'Inter', sans-serif;
}

.logo span {
    color: var(--primary-color);
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 600;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 25px 0;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 320px;
    margin: 0 auto;
}

.cta-button {
    text-decoration: none;
    border: none;
    padding: 16px 30px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.cta-button.primary:hover {
    background: var(--primary-hover);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 9, 20, 0.5);
}

.cta-button.secondary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.2);
}

.cta-button.secondary:hover {
    background: var(--secondary-hover);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(3px) scale(1.1);
}

.footer-text {
    margin-top: 40px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

#timer {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 40px 20px;
    }
    .logo {
        font-size: 2.8rem;
    }
    .tagline {
        font-size: 1rem;
    }
}
