/* Общие стили */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero section */
.jumbotron {
    padding: 4rem 2rem;
}

/* Карточки */
.card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Кнопки */
.btn {
    border-radius: 6px;
    font-weight: 500;
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
}

/* Бейджи */
.badge {
    font-size: 0.8em;
}

/* Навигация */
.navbar-brand {
    font-weight: bold;
}

/* Формы */
.form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Рейтинг */
.rating-stars .form-check-input {
    display: none;
}

.rating-stars .form-check-label {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.rating-stars .form-check-input:checked + .form-check-label,
.rating-stars .form-check-label:hover {
    opacity: 1;
}