* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f1014;
    background-image: 
        linear-gradient(135deg, #0f1014 0%, #16181d 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.login-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dekoracyjne tło "glow" */
.login-wrapper::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #5865F2;
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
    top: 20%;
    left: 20%;
    z-index: 0;
}

.login-card {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 440px;
    padding: 40px;
    background: rgba(30, 32, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    animation: floatIn 0.8s ease;
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 15px;
    color: #a0a4ac;
    line-height: 1.6;
    margin-bottom: 35px;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.discord-btn:active {
    transform: translateY(0);
}

/* Responsywność */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
        width: 95%;
    }
    h1 {
        font-size: 22px;
    }
}
