 .login-page-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 75vh;
        padding: 40px 20px;
        background: radial-gradient(circle at 50% 50%, rgba(255, 0, 92, 0.05) 0%, transparent 60%);
    }

    .auth-card {
        background: rgba(11, 12, 16, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 3px solid var(--primary);
        border-radius: 16px;
        padding: 50px 40px;
        width: 100%;
        max-width: 450px;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes popIn { 
        from { opacity: 0; transform: scale(0.9); } 
        to { opacity: 1; transform: scale(1); } 
    }

    .auth-card h1 {
        font-family: 'Teko', sans-serif;
        font-size: 3.5rem;
        margin-bottom: 5px;
        color: #fff;
        line-height: 1;
        letter-spacing: 2px;
    }

    .auth-card p {
        color: #aaa;
        margin-bottom: 35px;
        font-size: 1.1rem;
    }

    /* כפתורי סושיאל רחבים */
    .social-btn-long {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: 100%;
        padding: 16px;
        margin-bottom: 15px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: bold;
        text-decoration: none;
        color: #fff;
        transition: 0.3s;
        border: 1px solid transparent;
    }

    .social-btn-long i { font-size: 1.5rem; }

    .social-btn-long.discord { background: #5865F2; }
    .social-btn-long.discord:hover { 
        background: #4752C4; 
        transform: translateY(-3px); 
        box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4); 
    }
    
    .social-btn-long.twitch { background: #9146FF; }
    .social-btn-long.twitch:hover { 
        background: #7d5bbe; 
        transform: translateY(-3px); 
        box-shadow: 0 8px 20px rgba(145, 70, 255, 0.4); 
    }
    
    .social-btn-long.google { background: #fff; color: #333; }
    .social-btn-long.google:hover { 
        background: #eee; 
        transform: translateY(-3px); 
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2); 
    }

    .auth-footer-note {
        margin-top: 30px;
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
    }