@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    background: linear-gradient(160deg, #0b0f18, #0e1624 60%, #0a0d14);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center Card */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-card {
    background: rgba(20, 25, 34, 0.85);
    padding: 50px;
    border-radius: 20px;
    width: 380px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.8s ease;
}

.login-logo {
    width: 120px;
    margin-bottom: 20px;
    animation: popIn 0.5s ease;
}

h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Discord Button */
.discord-btn {
    background: #5865F2;
    border: none;
    padding: 14px 20px;
    color: white;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.25s ease;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

.discord-icon {
    width: 22px;
    filter: invert(1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
