/* public/assets/css/style.css */
body {
    background-color: #f5f5f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border-radius: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
}

.btn-primary:hover {
    background-color: #5b4cc4;
    border-color: #5b4cc4;
}

.navbar-brand i {
    color: #ffd93d;
}

.rating-star {
    color: #ffc107;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
/* Современные карточки и элементы */
.card-modern {
    background: white;
    border: none;
    border-radius: var(--card-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1) !important;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}
/* Заглушка для аватара */
.avatar-placeholder {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.avatar-placeholder-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
}

.avatar-placeholder-md {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
}

.avatar-placeholder-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 40px;
}

/* Заглушка для игры */
.game-cover-placeholder {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #94a3b8;
}

.game-cover-sm {
    width: 100%;
    height: 150px;
}
/* Заглушка аватара в навигации */
.avatar-placeholder-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-right: 8px;
}
.game-cover-icon {
    font-size: 48px;
}
/* Адаптивность */
@media (max-width: 768px) {
    .navbar-modern {
        padding: 0.75rem 0;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
}