    /* ========== DISCORD LOGIN BUTTON (PILLBOX THEME) ========== */
    .btn-discord-pillbox {
        background: rgba(88, 101, 242, 0.8) !important;
        border: 1px solid rgba(88, 101, 242, 0.45) !important;
        color: #fff !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border-radius: 12px;
        padding: 14px 5px 14px 5px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        position: relative;
        overflow: hidden;
        z-index: 3; /* Above the body light effect */
    }

    /* Hover State: Glowing & Solidifying */
    .btn-discord-pillbox:hover {
        background: rgb(242 88 88 / 15%) !important;
        backdrop-filter: blur(5px);
        border-color: #f25858 !important;
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4), 
                    0 0 15px rgba(255, 255, 255, 0.1);
    }

    /* The "Data-Sync" Shine Effect */
    .btn-discord-pillbox::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg, 
            transparent, 
            rgba(255, 255, 255, 0.2), 
            transparent
        );
        transition: 0.6s;
    }

    .btn-discord-pillbox:hover::after {
        left: 100%;
    }

    /* Branding Icon */
    .discord-brand-icon {
        font-size: 1.4rem;
        filter: drop-shadow(0 0 5px rgba(88, 101, 242, 0.5));
    }

    /* Technical Status Subtext */
    .auth-version {
        position: absolute;
        bottom: 4px;
        right: 12px;
        font-size: 0.55rem;
        font-family: monospace;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0px;
    }

/* ========== ROOT BACKGROUND ========== */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--pillbox-dark);
    background-image: 
        radial-gradient(at 10% 10%, rgba(217, 4, 41, 0.25) 0px, transparent 40%),
        radial-gradient(at 90% 90%, rgba(217, 4, 41, 0.2) 0px, transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Moving Light Effect */
body::after {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 10%, transparent 30%);
    animation: moveLight 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

@keyframes moveLight {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(15%, 5%); }
    50%  { transform: translate(10%, 20%); }
    75%  { transform: translate(-5%, 15%); }
    100% { transform: translate(0, 0); }
}

/* ========== LOGIN CARD ========== */
.login-card {
    z-index: 2;
    background: rgba(15, 15, 15, 0.72);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(217, 4, 41, 0.35);
    border-radius: 24px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.6);
    transition: all 0.35s ease;
}

.login-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/* ========== LOGO ========== */
.logo {
    width: 15em;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========== INPUTS ========== */
.form-control {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 0.85rem;
    transition: 0.3s;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-control:focus {
    border-color: #d90429 !important;
    box-shadow: 0 0 12px rgba(217, 4, 41, 0.4);
    background: rgba(255, 255, 255, 0.08) !important;
}

/* ========== BUTTON ========== */
.login-btn {
    background: linear-gradient(135deg, #d90429, #ef233c);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    padding: 12px;
    transition: all 0.35s ease;
    border: none;
}

.login-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 0 25px rgba(217, 4, 41, 0.55);
    color: #fff;
}

/* ========== PASSWORD TOGGLE ========== */
.password-toggle {
    position: absolute;
    right: 15px;
    top: 38px;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    transition: 0.3s;
}

.password-toggle:hover {
    color: #ef233c;
}

/* ========== FOOTER ========== */
.card-footer {
    background: transparent;
    border-top: none;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}
