@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Orbitron:wght@400;500;700&display=swap');

:root {
    --primary-color: #8a2be2;
    --secondary-color: #00bfff;
    --accent-color: #ff1493;
    --text-color: #ffffff;
    --bg-color: #050520;
    --container-bg: rgba(13, 12, 34, 0.7);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Stars Background */
.stars, .twinkling, .nets {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.stars {
    background: #000 url('https://i.imgur.com/YKY28eT.png') repeat top center;
}

.twinkling {
    background: transparent url('https://i.imgur.com/XYMF4ca.png') repeat top center;
    animation: move-twink-back 200s linear infinite;
    opacity: 0.7;
}

#vanta-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    position: relative;
    z-index: 1;
}

.content {
    background: var(--container-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    text-align: center;
    max-width: 800px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    }
    100% {
        box-shadow: 0 0 40px rgba(138, 43, 226, 0.7), 0 0 80px rgba(0, 191, 255, 0.4);
    }
}

.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 8s ease infinite;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.divider {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1.5rem auto;
    border-radius: 3px;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.coming-soon {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}

.features li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.quote {
    font-style: italic;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

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

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

.countdown-item span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 70px;
    text-align: center;
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-icon:hover {
    transform: translateY(-5px);
    opacity: 1;
    color: var(--accent-color);
}

#mars-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}



footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
    font-size: 0.9rem;
    opacity: 0.7;
    background: rgba(5, 5, 32, 0.7);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .content {
        padding: 2rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .features li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .social-icons {
        gap: 1rem;
    }
}
