body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #181c24 0%, #232a36 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-bg {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.hero-card {
    background: #232a36;
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(24,28,36,0.25), 0 1.5px 8px 0 rgba(88,101,242,0.10);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    text-align: center;
    min-width: 320px;
    max-width: 95vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(.4,2,.6,1), transform 0.9s cubic-bezier(.4,2,.6,1);
}
.hero-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.logo-circle {
    background: linear-gradient(135deg, #5865F2 0%, #23a6d5 100%);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 16px #5865f255;
}
.logo-img {
    width: 44px;
    height: 44px;
    display: block;
}

.hero-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 0.7rem 0;
    letter-spacing: 0.04em;
    color: #fff;
}
.hero-subtitle {
    color: #b3b8d1;
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    background: #181c24;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    padding: 1.1em 2.5em;
    border: none;
    border-radius: 999px;
    box-shadow: 0 4px 24px 0 #181c2444;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    outline: none;
}
.discord-btn .discord-icon {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    margin-right: 0.2em;
    filter: drop-shadow(0 1px 2px #23272f88);
}
.discord-btn:hover, .discord-btn:focus {
    background: #232a36;
    color: #fff;
    border: none;
    box-shadow: 0 8px 32px 0 #232a3644;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
    .hero-card {
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
        min-width: 0;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .logo-circle {
        width: 48px;
        height: 48px;
    }
    .logo-img {
        width: 28px;
        height: 28px;
    }
}

#loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: #181c24;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(.4,2,.6,1);
}
#loader.hidden {
    opacity: 0;
    pointer-events: none;
}
.spinner {
    width: 54px;
    height: 54px;
    border: 6px solid #232a36;
    border-top: 6px solid #5865F2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 