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

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

body {
    background: black;
    min-height: 100vh;
    font-family: 'Orbitron', monospace;
    overflow: hidden;
    position: relative;
}

/* Animated background particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.8);
        animation: float 6s infinite ease-in-out;
    }

    .particle:nth-child(3n+1) {
        background: rgba(255, 0, 0, 0.6);
    }

    .particle:nth-child(3n+2) {
        background: rgba(0, 0, 255, 0.6);
    }

    .particle:nth-child(3n+3) {
        background: rgba(255, 255, 255, 0.8);
    }

/* Container that holds everything in front of the particles (higher z-index) */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 20px;
}

    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

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

    .logo {
        font-size: clamp(3rem, 8vw, 8rem);
        font-weight: 900;
        background: linear-gradient(45deg, #ff0000, #0000ff, #ff0000);
        background-size: 200% 200%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientShift 3s ease-in-out infinite;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: clamp(1.2rem, 3vw, 2rem);
        color: white;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        opacity: 0;
        animation: fadeInUp 1s ease-out 0.5s forwards;
    }

    .is-coming-soon {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        background: linear-gradient(90deg, #ff0000, #0000ff);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-style: italic;
        margin-bottom: 30px;
        opacity: 0;
        animation: fadeInUp 1s ease-out 0.7s forwards;
    }

    .coming-soon {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        padding: 30px 50px;
        margin: 30px 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        opacity: 0;
        animation: fadeInUp 1s ease-out 1s forwards;
    }

        .coming-soon p {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(1rem, 2vw, 1.3rem);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .server-address {
            background: rgba(0, 0, 0, 0.3);
            border: 2px solid transparent;
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                              linear-gradient(45deg, #ff0000, #0000ff);
            background-origin: border-box;
            background-clip: content-box, border-box;
            border-radius: 8px;
            padding: 15px 10px;
            margin: 20px auto 10px auto;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: inline-block;
            min-width: 280px;
        }

            .server-address:hover {
                transform: scale(1.02);
                box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
            }

            .address-text {
                font-family: 'Courier New', monospace;
                font-size: 1.3rem;
                font-weight: bold;
                color: #ffffff;
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
                display: block;
            }

            .copy-hint {
                font-size: 0.8rem;
                color: rgba(255, 255, 255, 0.6);
                margin-top: 5px;
                display: block;
                font-style: italic;
            }
        
        .pre-save-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            margin-top: 10px;
            font-style: italic;
        }

    .social-link {
        display: inline-block;
        margin: 0 15px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
    
@media (max-width: 768px) {
    .coming-soon {
        margin: 20px;
        padding: 20px 25px;
    }
}