* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #151520 0%, #0b0b0f 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.6s ease;
}

.logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 20px;
    user-select: none;
}

h1 {
    font-size: 24px;
    color: #bbaaff;
    margin-bottom: 10px;
}

.divider-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    position: relative;
}

.divider-line::before,
.divider-line::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.divider-line span {
    margin: 0 12px;
    color: #b9b9b9;
    font-size: 14px;
}

.discord-btn, .google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #6c42a7, #9b6bff);
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 5px 20px rgba(108, 66, 167, 0.4);
    margin: 10px 0;
}

.discord-btn:hover, .google-btn:hover {
    background: linear-gradient(90deg, #7b4bd1, #a98cff);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155, 107, 255, 0.5);
}

.discord-icon, .google-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .login-box {
        padding: 40px 20px;
    }

    h1 {
        font-size: 20px;
    }

    .discord-btn, .google-btn {
        font-size: 14px;
        padding: 12px 15px;
    }

    .discord-icon, .google-icon {
        width: 18px;
        height: 18px;
    }
}
