/* Login Page Styles - Steam and Discord Login Buttons */

/* Modern Steam Login Button */
.steam-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 40, 56, 0.3);
    position: relative;
    overflow: hidden;
}

.steam-login-btn:hover {
    background: linear-gradient(135deg, #2a475e 0%, #1b2838 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 40, 56, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.steam-login-btn:hover .steam-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.steam-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(27, 40, 56, 0.3);
}

.steam-login-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3);
}

.steam-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: white;
    border-radius: 50%;
    padding: 4px;
    box-sizing: content-box;
}

.steam-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.steam-login-btn:hover::before {
    left: 100%;
}

/* Discord Login Button */
.discord-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.discord-login-btn:hover {
    background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.discord-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(88, 101, 242, 0.3);
}

.discord-login-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.3);
}

.discord-icon {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    padding: 4px;
    box-sizing: content-box;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.discord-login-btn:hover .discord-icon {
    transform: scale(1.05);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.discord-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.discord-login-btn:hover::before {
    left: 100%;
}

/* Responsive design */
@media (max-width: 576px) {
    .steam-login-btn, .discord-login-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .steam-icon, .discord-icon {
        width: 18px;
        height: 18px;
    }
}











