:root {
    --primary-color: #F28C45;
    --accent-color: #F28C45;
    --text-color: #ffffff;
    --bg-dark: #000000;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--bg-dark);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    width: 100%;
}

.logo-container {
    margin-bottom: 3rem;
    opacity: 0;
}

.main-logo {
    width: 280px;
    filter: drop-shadow(0 0 15px rgba(242, 140, 69, 0.5));
}

.hero-text {
    margin-bottom: 4rem;
}

.sub-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0;
}

.headline {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff 40%, #F28C45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    min-width: 100px;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(242, 140, 69, 0.5);
}

.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.footer-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-weight: 700;
}

.social-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 600px) {
    .countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }

    .number {
        font-size: 1.8rem;
    }

    .main-logo {
        width: 200px;
    }
}