.login_area {
        position: relative;
        overflow: hidden;
        z-index: 1;
        background: radial-gradient(circle at 50% 50%, #140727 0%, #05020a 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .login_area::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: linear-gradient(45deg, #ff0055, #00ffcc, #ffcc00, #0066ff);
        filter: blur(160px);
        opacity: 0.22;
        top: 25%;
        left: 40%;
        z-index: -2;
        animation: pulseGlow 10s ease-in-out infinite alternate;
    }

    .gaming-card {
        background: rgba(22, 11, 38, 0.7) !important;
        border: 2px solid rgba(255, 255, 255, 0.07) !important;
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65), inset 0 0 25px rgba(255, 255, 255, 0.04) !important;
        backdrop-filter: blur(25px) saturate(190%);
        transition: all 0.4s ease;
    }

    .gaming-card:hover {
        border-color: rgba(0, 255, 204, 0.25) !important;
        box-shadow: 0 25px 55px rgba(0, 255, 204, 0.08), inset 0 0 35px rgba(0, 255, 204, 0.03) !important;
    }

    .game-input {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        color: #fff !important;
        transition: all 0.3s ease !important;
    }

    .game-input:focus {
        background: rgba(255, 255, 255, 0.06) !important;
        border-color: #00ffcc !important;
        box-shadow: 0 0 15px rgba(0, 255, 204, 0.2) !important;
    }

    .btn-gaming {
        background: linear-gradient(90deg, #ff0055, #9900ff) !important;
        color: white !important;
        box-shadow: 0 6px 20px rgba(255, 0, 85, 0.35);
        transition: all 0.3s ease !important;
    }

    .btn-gaming:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 0, 85, 0.55), 0 0 12px #9900ff;
    }

    @keyframes pulseGlow {
        0% {
            transform: scale(1);
            opacity: 0.18;
        }
        100% {
            transform: scale(1.25);
            opacity: 0.3;
        }
    }

    @keyframes subtleFloat {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-12px);
        }
        100% {
            transform: translateY(0px);
        }
    }