:root {
    --primary: #697565;
    --secondary: #3C3D37;
    --accent: #ECDFCC;
    --text: #ffffff;
    --background: #1a1a1a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.neon-text {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 0 10px var(--primary),
                 0 0 20px var(--primary),
                 0 0 30px var(--primary);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.subheading {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.countdown-item .label {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-container {
    background: rgba(105, 117, 101, 0.1);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
}

.coming-soon-text {
    text-align: center;
}

.coming-soon-text h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(105, 117, 101, 0.3);
}

.coming-soon-text p {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(105, 117, 101, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 400px;
}

.progress {
    width: 30%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
        margin-left: 0;
    }
    50% {
        width: 30%;
        margin-left: 70%;
    }
    100% {
        width: 0%;
        margin-left: 100%;
    }
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.subscribe-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-form button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--text);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    color: var(--accent);
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

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

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--primary),
                     0 0 20px var(--primary),
                     0 0 30px var(--primary);
    }
    to {
        text-shadow: 0 0 20px var(--primary),
                     0 0 30px var(--primary),
                     0 0 40px var(--primary);
    }
}

@media (max-width: 768px) {
    .neon-text {
        font-size: 2.5rem;
    }

    .subheading {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item span:first-child {
        font-size: 1.8rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form button {
        width: 100%;
    }
} 