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

body {
    font-family: 'Arial', sans-serif;
    background: 
        linear-gradient(135deg, 
            rgba(44, 62, 80, 0.8) 0%, 
            rgba(52, 73, 94, 0.7) 25%, 
            rgba(93, 109, 126, 0.6) 50%, 
            rgba(133, 146, 158, 0.5) 75%, 
            rgba(174, 182, 191, 0.4) 100%
        ),
        url('https://media.discordapp.net/attachments/1120108681426640937/1403068991609503814/image.png?ex=68963553&is=6894e3d3&hm=bb0d02193a487d3df328972027e386600cb3c976af1a24767b49fcc0399e200e&=&format=webp&quality=lossless&width=845&height=481');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 1;
}

.coming-soon {
    margin-bottom: 60px;
}

.fade-in-text {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    letter-spacing: 8px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.discord-section {
    margin-top: 40px;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(135deg, #7289da 0%, #5865f2 50%, #4752c4 100%);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 32px rgba(114, 137, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(114, 137, 218, 0.5),
        0 0 20px rgba(114, 137, 218, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #7c8ee8 0%, #5f6fd8 50%, #4a5bc0 100%);
}

.discord-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(114, 137, 218, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

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

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 1;
}

.discord-button:hover .shine-effect {
    left: 100%;
}

.discord-logo {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Responsive design */
@media (max-width: 768px) {
    .fade-in-text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .discord-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fade-in-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .discord-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
} 
