body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(-45deg, #0a0a0a, #121212, #1a1a1a, #0a0a0a);
    background-size: 400% 400%;
    animation: bgMove 15s ease infinite;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fog {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: url('../images/smoke.jpg') repeat;
    background-size: cover;
    opacity: 0.05;
    animation: fogMove 60s linear infinite;
    pointer-events: none;
}

@keyframes fogMove {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-25%, -25%); }
    100% { transform: translate(0, 0); }
}

.logo {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 10px;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
}

.logo .white { color: white; }
.logo .orange {
    color: #ff9900;
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 5px #ff9900; }
    100% { text-shadow: 0 0 15px #ffcc66; }
}

h2 {
    font-weight: 400;
    color: #ccc;
    margin-bottom: 5px;
    animation: fadeIn 2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

p {
    color: #777;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    font-style: italic;
    animation: fadeIn 2s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.discord-btn {
    background-color: #5865F2;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    animation: fadeIn 2s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.discord-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px #5865F2;
}

.discord-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    display: inline-block;
}


@keyframes fadeIn { to { opacity: 1; } }