/* Main Application Styles */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Steam Button Styling */
.btn-steam {
    background-color: #171a21;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-steam:hover {
    background-color: #2a475e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Card Styling */
.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

/* Avatar Styling */
.avatar-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding: 1.5rem 0;
    background-color: #343a40;
    color: #ffffff;
}

/* Alert Styling */
.alert {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Form Styling */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border-color: #86b7fe;
}

/* Button Styling */
.btn {
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

/* Profile Section */
.profile-header {
    background-color: #ffffff;
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 1.5rem;
}

.profile-stat-item {
    padding: 0.5rem 1rem;
}

.profile-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.profile-stat-label {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1.5rem;
    }
    
    .profile-header {
        padding: 1rem 0;
    }
    
    .profile-stats {
        flex-direction: column;
    }
    
    .profile-stat-item {
        margin-bottom: 0.5rem;
    }
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Steam-themed Elements */
.steam-bg {
    background: linear-gradient(135deg, #171a21 0%, #2a475e 100%);
    color: #ffffff;
}

.steam-text {
    color: #171a21;
}

/* Custom Badge Styling */
.badge-steam {
    background-color: #171a21;
    color: #ffffff;
}

/* Login Container */
.login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

/* User Card */
.user-card {
    transition: all 0.3s ease;
}

.user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}