:root {
    --primary-color: #fff;
    --secondary-color: #c0c0c0;
    --bg-color: #0f0f0f;
    --accent-color: #0066ff;
    --glow-color: rgba(0, 102, 255, 0.5);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
    overflow: hidden;
    cursor: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
}

.content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

    .cta-box h1 {
        font-size: 4.5em;
        margin: 0 0 20px 0;
        font-weight: 800;
        letter-spacing: -2px;
        position: relative;
        background: linear-gradient(90deg, #00dbde, #fc00ff, #00dbde);
        background-size: 200% 200%;
        animation: gradient-wave 5s ease infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

@keyframes gradient-wave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-box p {
    font-size: 1.2em;
    margin: 0 0 40px 0;
    line-height: 1.6;
    color: var(--secondary-color);
}

.cta-btn {
    padding: 20px 50px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    margin-top: 40px;
    display: inline-block;
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(0, 102, 255, 0.6);
    }

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(63, 81, 181, 0.05) 2px, transparent 2px), linear-gradient(90deg, rgba(63, 81, 181, 0.05) 2px, transparent 2px), linear-gradient(rgba(63, 81, 181, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(63, 81, 181, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    animation: bg-grid 20s linear infinite alternate;
    pointer-events: none;
    z-index: -2;
}

@keyframes bg-grid {
    from {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }

    to {
        background-position: -100px -100px, 100px 100px, -20px -20px, 20px 20px;
    }
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.15;
    border: 2px solid var(--primary-color);
    animation: orbit 60s linear infinite;
    pointer-events: none;
}

    .orbit::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: var(--accent-color);
        transform: translateX(-50%);
    }

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    z-index: 10;
    box-sizing: border-box;
}

.logo {
    font-weight: 900;
    font-size: 2.5em;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .logo:hover {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 60px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    min-width: 60px;
}

.countdown-value {
    font-size: 4em;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.countdown-label {
    font-size: 1.2em;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--glow-color);
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 1000;
    mix-blend-mode: screen;
}

    .cursor.show {
        opacity: 1;
    }

    .cursor.hover {
        width: 40px;
        height: 40px;
        background-color: var(--accent-color);
    }

.social-icons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    /* background-color: rgba(15, 15, 15, 0.8); */
    padding: 10px 0;
}

    .social-icons a {
        color: var(--primary-color);
        margin: 0 10px;
        font-size: 1.5em;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: var(--accent-color);
        }

.animated-icons {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.animated-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .cta-box h1 {
        font-size: 2.5em;
    }

    .cta-box p {
        font-size: 1em;
    }

    .cta-btn {
        font-size: 1em;
        padding: 15px 40px;
    }

    .countdown-value {
        font-size: 2.5em;
    }

    .countdown-label {
        font-size: 0.9em;
    }

    .orbit {
        width: 80%;
        height: 80%;
        max-width: 300px;
        max-height: 300px;
    }

    .logo {
        font-size: 2em;
    }
}
