/* General Page Layout */
body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 80%);
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
}

/* Coming Soon Section */
.comingsoon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 100px 20px 60px 20px;
}

.title {
    font-size: 48px;
    color: #b387ff;
    text-shadow: 0 0 20px rgba(179, 135, 255, 0.6);
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: pulse 3s infinite;
}

.subtitle {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 50px;
}

/* Glowing Orbit Animation */
.animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.orbit {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(179, 135, 255, 0.3);
    border-radius: 50%;
    position: relative;
    animation: rotate 6s linear infinite;
}

.planet {
    width: 30px;
    height: 30px;
    background-color: #b387ff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(179, 135, 255, 0.8);
}

/* Button Styling */
.btn {
    background-color: #b387ff;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(179, 135, 255, 0.3);
}

.btn:hover {
    background-color: #c6a8ff;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(179, 135, 255, 0.5);
}

/* Footer */
.footer {
    background-color: #000;
    color: #888;
    padding: 20px 0;
    font-size: 14px;
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0%, 100% { text-shadow: 0 0 15px rgba(179, 135, 255, 0.4); }
    50% { text-shadow: 0 0 25px rgba(179, 135, 255, 0.9); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }

    .orbit {
        width: 120px;
        height: 120px;
    }

    .planet {
        width: 24px;
        height: 24px;
    }
}


/* === PARTICLES LAYER === */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(179,135,255,0.08), transparent 80%);
}

/* === LAYER FIXES === */
.comingsoon-section,
.animation-container,
.orbit,
.planet,
.title,
.subtitle,
.btn {
    position: relative;
    z-index: 9999;
}

/* === FADE-IN ANIMATION === */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
