.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, #1a0000 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    filter: blur(50px);
}

.logo-top {
    margin-bottom: 4rem;
    z-index: 10;
}

.logo-top img {
    width: 20rem;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
    transition: transform 0.3s;
}

.logo-top:hover img {
    transform: scale(1.05);
}

.login-cards {
    width: 100%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    z-index: 10;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: var(--Space), sans-serif;
}

.glow-line {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin-bottom: 2.5rem;
    box-shadow: 0 0 15px var(--primary-color);
}

.content p {
    font-size: 1.5rem;
    color: #bebebe;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.content p.description {
    font-weight: 500;
}

/* Discord Button */
.btn-discord-login {
    width: 100%;
    padding: 1.8rem;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
    font-family: var(--Space), sans-serif;
}

.btn-discord-login:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.5);
    filter: brightness(1.2);
}

.btn-discord-login ion-icon {
    font-size: 2.4rem;
}

.protection {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Member Card */
.member-card {
    background: rgba(0, 0, 0, 0.4);
}

.btn-member-area {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-member-area:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    margin-top: 6rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    line-height: 2;
    z-index: 10;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
}

.footer-grafite {
    width: 6rem;
    opacity: 0.1;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .card {
        padding: 2.5rem 2rem;
    }

    .card header h2 {
        font-size: 1.8rem;
    }
}

兴奮