:root {
    --primary: #00a3ff;
    --dark: #0a1128;
    --light: #e0f2fe;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    background-image: url('../assets/img/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.8) 0%, rgba(0, 163, 255, 0.3) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1.2s ease-out;
}

/* Header & Logo */
.logo-area {
    margin-bottom: 3rem;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.5);
    animation: pulse 2s infinite;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
}

h1 span {
    font-weight: 800;
    color: var(--primary);
}

/* Hero Text */
.massive-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #80d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.time-block {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.time-block:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.time-block span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.time-block p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 0.5rem;
}

/* Subscribe Form */
.subscribe p {
    margin-bottom: 1rem;
    font-weight: 500;
}

.glass-form {
    display: flex;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 5px;
    border-radius: 50px;
    max-width: 450px;
    margin: 0 auto 3rem;
}

.glass-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.glass-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glass-form button:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Socials */
.socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.socials a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.socials a:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.2);
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 163, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(0, 163, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 163, 255, 0); }
}

/* Responsive */
@media (max-width: 600px) {
    body {
        overflow-y: auto;
        padding: 2rem 0;
    }
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .time-block {
        min-width: 80px;
        padding: 1rem;
    }
    .glass-form {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 1rem;
    }
    .glass-form input {
        background: var(--glass);
        padding: 15px 25px;
        border-radius: 50px;
        border: 1px solid var(--glass-border);
    }
}
