:root {
    --kick-green: #53FC18;
    --kick-green-glow: rgba(83, 252, 24, 0.4);
    --bg-dark: #050505;
    --text-white: #FFFFFF;
    --text-dim: #888888;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--kick-green-glow) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
    opacity: 0.6;
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text .dot {
    color: var(--kick-green);
}

/* Hero Section */
.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.status-pill {
    background: rgba(83, 252, 24, 0.1);
    color: var(--kick-green);
    border: 1px solid rgba(83, 252, 24, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 80px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--kick-green);
    -webkit-text-fill-color: var(--kick-green);
    text-shadow: 0 0 30px var(--kick-green-glow);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 48px;
}

/* Countdown */
.countdown-container {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    align-items: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-size: 48px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.label {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.separator {
    font-size: 32px;
    color: var(--border-color);
    margin-top: -20px;
}

/* Notify Form */
.notify-wrapper {
    width: 100%;
    max-width: 500px;
}

.notify-form-inline {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.notify-form-inline input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: white;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.notify-form-inline button {
    background: var(--kick-green);
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.notify-form-inline button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px var(--kick-green-glow);
}

.arrow-icon path {
    stroke: black;
}

.spam-notice {
    margin-top: 16px;
    font-size: 14px;
    color: #444;
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--kick-green);
}

.copyright {
    color: #444;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .notify-form-inline {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 12px;
    }

    .notify-form-inline input {
        height: 50px;
        background: var(--glass-bg);
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }

    .notify-form-inline button {
        width: 100%;
        justify-content: center;
        height: 50px;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
    }
}