:root {
    --primary: #5a3286; /* gradient purple/blue matching logo */
    --accent: #2c6fb0; /* gradient blue */
    --text-main: #FFFFFF;
    --text-muted: #E2E8F0;
    --bg-color: #000000;
    --card-bg: transparent;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem 0;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.video-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.85; /* Keep video bright but slightly muted */
}

.background-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    right: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
    100% { transform: translate(0, 0); }
}

.container {
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    text-align: center;
    z-index: 10;
    animation: fadeIn 1s ease-out;
}

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

header {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

main > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.number {
    font-size: 4rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    font-weight: 600;
}

.separator {
    font-size: 3.5rem;
    font-weight: 300;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    margin-top: -1.5rem;
    opacity: 0.8;
}

.subscribe {
    max-width: 500px;
    margin: 0 auto;
}

.subscribe p {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.notify-form input:focus {
    border-color: var(--primary);
}

.notify-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.1s;
    font-family: inherit;
}

.notify-form button:hover {
    opacity: 0.9;
}

.notify-form button:active {
    transform: scale(0.98);
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        width: 92%;
        margin: 1rem auto;
    }

    .logo {
        max-width: 180px;
        margin-bottom: -1rem;
    }

    .countdown-container {
        gap: 0.2rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    
    .time-box {
        min-width: 65px;
    }

    .number {
        font-size: 2rem;
    }
    
    .separator {
        font-size: 1.5rem;
        margin-top: -1rem;
    }

    .notify-form {
        flex-direction: column;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    main > p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}
