* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    height: 100vh;
    background: #0c0816;
    color: #ffffff;
    overflow: hidden;
}

.background {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top, #7c3aed, transparent 60%),
        radial-gradient(circle at bottom, #4c1d95, transparent 60%);
    opacity: 0.35;
    z-index: -1;
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    background: rgba(20, 12, 40, 0.88);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 45px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(76, 29, 149, 0.4);
    animation: fadeIn 1.2s ease;
    border: 1px solid rgba(167, 139, 250, 0.15);
}

h1 {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #a78bfa, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    text-align: center;
    margin-top: 12px;
    font-weight: 400;
    color: #c4b5fd;
}

.subtitle {
    text-align: center;
    margin: 28px 0 38px;
    color: #ddd6fe;
    line-height: 1.6;
}

.features h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ede9fe;
}

.features ul {
    list-style: none;
}

.features li {
    margin-bottom: 14px;
    padding-left: 5px;
    font-size: 0.95rem;
    color: #e9d5ff;
}

.loader {
    margin: 38px auto 28px;
    width: 62px;
    height: 62px;
    border: 5px solid rgba(167, 139, 250, 0.2);
    border-top: 5px solid #a78bfa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.footer {
    text-align: center;
    font-size: 0.8rem;
    color: #c7d2fe;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .card {
        padding: 32px 24px;
    }

    h1 {
        font-size: 2.1rem;
    }
}

.discord {
    text-align: center;
    margin-bottom: 35px;
}

.discord-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.45);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discord-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discord-btn:hover::before {
    opacity: 1;
}

.discord-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.6);
}

.discord-btn:active {
    transform: scale(0.98);
}
