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

body {
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Animated star field background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.8"/><circle cx="80" cy="40" r="0.5" fill="white" opacity="0.6"/><circle cx="40" cy="60" r="1.5" fill="white" opacity="0.9"/><circle cx="90" cy="80" r="0.8" fill="white" opacity="0.7"/><circle cx="10" cy="90" r="0.3" fill="white" opacity="0.5"/></svg>') repeat;
    animation: moveStars 50s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="10" r="0.8" fill="white" opacity="0.6"/><circle cx="70" cy="70" r="0.4" fill="white" opacity="0.8"/><circle cx="50" cy="30" r="1" fill="white" opacity="0.7"/><circle cx="15" cy="50" r="0.6" fill="white" opacity="0.5"/></svg>') repeat;
    animation: moveStars 100s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="60" cy="15" r="0.3" fill="white" opacity="0.9"/><circle cx="25" cy="75" r="0.7" fill="white" opacity="0.6"/><circle cx="85" cy="25" r="0.4" fill="white" opacity="0.8"/></svg>') repeat;
    animation: moveStars 75s linear infinite;
}

@keyframes moveStars {
    from { transform: translateY(0px); }
    to { transform: translateY(-100vh); }
}

/* Floating planets */
.planet {
    position: fixed;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.planet-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #d63031);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.planet-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #74b9ff, #0984e3);
    bottom: 30%;
    left: 15%;
    animation-delay: -2s;
    box-shadow: 0 0 15px rgba(116, 185, 255, 0.3);
}

.planet-3 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #a29bfe, #6c5ce7);
    top: 60%;
    right: 20%;
    animation-delay: -4s;
    box-shadow: 0 0 10px rgba(162, 155, 254, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.error-content {
    text-align: center;
    position: relative;
}









/* Main coming soon box */
.coming-soon-box {
    background: rgba(15, 52, 96, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 80px 50px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 10;
    animation: slideInDown 1s ease-out;
}

.coming-soon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(100, 200, 255, 0.05) 50%, transparent 100%);
    animation: shimmerGradient 3s infinite;
    pointer-events: none;
}

@keyframes shimmerGradient {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title Container */
.title-container {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(100, 200, 255, 0.6), 0 0 60px rgba(100, 200, 255, 0.3);
    position: relative;
    animation: titleGlow 2s ease-in-out infinite;
    letter-spacing: 3px;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(100, 200, 255, 0.6), 0 0 60px rgba(100, 200, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(100, 200, 255, 0.8), 0 0 80px rgba(100, 200, 255, 0.5);
    }
}

.title-underline {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64c8ff, transparent);
    margin: 15px auto 0;
    animation: expandWidth 1s ease-out 0.5s both;
    box-shadow: 0 0 15px rgba(100, 200, 255, 0.6);
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 150px;
        opacity: 1;
    }
}

.subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    color: #64c8ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(100, 200, 255, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.countdown-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.launch-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(100, 200, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

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

/* Button styles */
.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.action-button {
    position: relative;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-button {
    background: linear-gradient(135deg, #64c8ff, #44a08d);
    color: white;
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.4);
}

.secondary-button {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.action-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.action-button:hover .button-bg {
    left: 100%;
}

.action-button:active {
    transform: translateY(-1px);
}

/* Button click ripple effect */
.button-ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Shooting star effect */
.shooting-star {
    position: fixed;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white;
    animation: shootingStar 2s linear forwards;
    z-index: 5;
}

/* Responsive design */
@media (max-width: 768px) {
    .coming-soon-box {
        padding: 50px 30px;
        margin: 20px;
    }

    .main-title {
        font-size: 48px;
    }

    .subtitle {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .action-button {
        width: 200px;
        padding: 12px 25px;
        font-size: 14px;
    }

    .planet-1 {
        width: 60px;
        height: 60px;
    }

    .planet-2 {
        width: 45px;
        height: 45px;
    }

    .planet-3 {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }

    .container {
        height: auto;
        min-height: 100vh;
        padding: 20px 10px;
    }

    .coming-soon-box {
        padding: 30px 20px;
    }

    .main-title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .action-button {
        width: 180px;
        padding: 10px 20px;
        font-size: 12px;
    }

    .planet-1, .planet-2 {
        display: none;
    }

    .planet-3 {
        width: 25px;
        height: 25px;
    }
}

/* Additional hover effects */
.coming-soon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(100, 200, 255, 0.2);
    transition: all 0.3s ease;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: rgba(15, 52, 96, 0.95);
    color: #64c8ff;
    padding: 16px 32px;
    border-radius: 50px;
    border: 1px solid rgba(100, 200, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-family: 'Space Mono', monospace;
    z-index: 100;
    pointer-events: none;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.notification-toast.show {
    animation: toastSlideIn 0.4s ease-out forwards;
}

.notification-toast.hide {
    animation: toastSlideOut 0.4s ease-in forwards;
}

@keyframes toastSlideIn {
    to {
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes toastSlideOut {
    to {
        transform: translateX(-50%) translateY(150px);
    }
}

/* Particle background */
.particle-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.stars::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
    box-shadow:
        20px 10px 0 white,
        40px 30px 0 white,
        60px 15px 0 white,
        80px 40px 0 white;
}

/* Smooth scrolling for mobile */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
