/* ============================================
   VOLLEYBALL GAMES - MAIN STYLES
   Собрано: 2026-03-26 14:04:02
   ============================================ */

/* === style.css === */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Цветовая система */
:root {
    --primary: #FF6B35;
    --primary-dark: #FF5722;
    --primary-light: #FFB68F;
    --secondary: #1A2A4F;
    --secondary-light: #2A3A60;
    --bg-light: #F8FAFE;
    --white: #FFFFFF;
    --success: #2E7D32;
    --warning: #E67E22;
    --error: #E53935;
    --text-primary: #2D3E50;
    --text-secondary: #7F8C8D;
    --border-light: #E2E8F0;
    --gray-bg: #f2f5f8;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 30px rgba(0,0,0,0.12);

    --transition: all .2s ease;
}
/*  */

.ui-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
}

.ui-card:hover {
    box-shadow: var(--shadow-md);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--secondary) !important;
}
/*  */

body {
    font-family: 'Inter', sans-serif;
    /* background-color: #F8FAFE; */
    background-color: var(--gray-bg);
    color: #2D3E50;
    line-height: 1.5;
}

main {
    padding-top: 32px;
    padding-bottom: 80px;
}

.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Хедер */
.header {
    background-color: var(--secondary);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 28px;
    color: var(--primary);
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.navbar {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar-toggler {
    border: none;
}

.navbar-nav {
    flex-direction: row;
}

.navbar-nav .nav-item {
    padding: 0px 10px;
}

.navbar .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

.navbar .nav-link.active {
    color: var(--primary);
}


.btn-outline-primary {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Hero секция */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Форма поиска */
.create-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-top: 24px;
}

.create-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 6px;
}

.input-group select,
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    transition: all 0.2s;
}

.input-group select:focus,
.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.level-buttons {
    display: flex;
    gap: 12px;
}

.level-btn {
    flex: 1;
    padding: 10px;
    background: var(--gray-bg);
    border: none;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.level-btn.active {
    background: var(--secondary);
    color: white;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Секции */
.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
}

.section-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Карточки игр */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.game-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
    position: relative;
}

.game-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-indicator {
    height: 4px;
    background: var(--success);
}

.card-indicator.warning {
    background: var(--warning);
}

.card-indicator.danger {
    background: var(--error);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.card-location {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.card-info i {
    width: 20px;
    color: var(--primary);
}

.level-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gray-bg);
}

.level-badge.novice {
    background: #E8F5E9;
    color: #2E7D32;
}

.level-badge.intermediate {
    background: #E3F2FD;
    color: #1A2A4F;
}

.level-badge.advanced {
    background: #FFF3E0;
    color: var(--warning);
}

.players {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0;
}

.avatars {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    margin-right: -8px;
    border: 2px solid white;
}

.avatar:first-child {
    background: #667eea;
    color: white;
}

.spots-left {
    font-size: 14px;
    font-weight: 600;
}

.spots-left.green {
    color: var(--success);
}

.spots-left.orange {
    color: var(--warning);
}

.spots-left.red {
    color: var(--error);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}


.card-location {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.card-location i {
    color: #667eea;
    width: 16px;
}

.card-info {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #6b7280;
}

.card-info i {
    color: #667eea;
}


.card-header-badges {
    display: flex;
    justify-content: end;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
}

.btn-book {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-book.disabled {
    background: var(--primary);
    cursor: not-allowed;
}

/* Бейджи уровней */
.level-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.level-beginner {
    background: #d1fae5;
    color: #065f46;
}

.level-amateur {
    background: #fef3c7;
    color: #92400e;
}

.level-advanced {
    background: #fed7aa;
    color: #9b2c1d;
}

.level-professional {
    background: #e0e7ff;
    color: #3730a3;
}

.level-unknown {
    background: #f3f4f6;
    color: #374151;
}

.join-game {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.join-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.leave-game.booked {
    background: #ef4444;
    color: white;
}

.leave-game.booked:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.creator-btn {
    color: black;
}

.full {
    background: #9ca3af;
    color: white;
    cursor: not-allowed;
}

.live-btn {
    background: #ef4444;
    color: white;
    animation: pulse 1.5s infinite;
}

.completed-btn {
    background: #6b7280;
    color: white;
    cursor: not-allowed;
}

.login-card {
    background-color: var(--white);
}
.login-btn {
    background: #667eea;
    color: white;
}

.login-btn:hover {
    background: #5a67d8;
    color: white;
}

.register-card {
    background-color: var(--white);
}

.btn-details {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 40px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: #667eea;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Площадки */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.venue-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    /* background: var(--white); */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.venue-card:hover{
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.venue-image {
    height: 160px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.venue-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}

.venue-content {
    padding: 20px;
}

.venue-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.venue-rating {
    color: var(--warning);
    margin: 8px 0;
}

.badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
}

/* ========== СЕКЦИЯ ТРЕНЕРОВ ========== */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.coach-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.coach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.coach-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--secondary), #2c3e66);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.coach-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: -40px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.coach-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.coach-badge.verified {
    background: var(--success);
}

.coach-content {
    padding: 24px 20px 20px;
    text-align: center;
}

.coach-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.coach-title {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.coach-specialization {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.spec-tag {
    background: var(--gray-bg);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

.coach-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.coach-stat {
    text-align: center;
}

.coach-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.coach-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
}

.coach-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
}

.rating-number {
    font-weight: 600;
    color: var(--text-primary);
}

.reviews-count {
    font-size: 12px;
    color: var(--text-secondary);
}

.coach-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
    margin: 12px 0;
}

.coach-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

.btn-coach {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-coach:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Социальное доказательство */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
    margin: 40px 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.reviews {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 0;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Шаги */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

/* Футер */
.footer {
    background: var(--secondary);
    color: white;
    padding: 48px 0 24px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* ========== МОБИЛЬНОЕ НИЖНЕЕ МЕНЮ ========== */
.bottom-nav {
    display: none;
    background: var(--secondary);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1040;
    padding: 16px 0;
    backdrop-filter: blur(10px);
    background: rgba(26, 42, 79, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    padding: 8px 0;
    border-radius: 12px;
    margin: 0 4px;
}

.bottom-nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.bottom-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.bottom-nav-item:active i {
    transform: scale(0.95);
}

/* Активный индикатор */
.bottom-nav-item.active {
    position: relative;
}

.bottom-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* Кнопка создания игры (выделенная) */
.bottom-nav-item.create-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    margin-top: -15px;
    margin-bottom: -15px;
    padding: 12px 0;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.bottom-nav-item.create-btn i {
    font-size: 24px;
    margin-bottom: 0;
}

.bottom-nav-item.create-btn span {
    display: none;
}

.bottom-nav-item.create-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.5);
}

/* Отступ для контента на мобильных */
.bottom-nav-padding {
    display: none;
    height: var(--bottom-nav-height);
}

/* ========== АДАПТИВНОСТЬ ========== */

/* 768 px */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .nav {
        display: none;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .container-custom {
        padding: 0 16px;
    }
}
/* 991.98 px */
@media (max-width: 991.98px) {
    .header {
        position: unset;
    }
    #navbarMain {
        display: none;
    }

    .bottom-nav {
        display: block;
    }

    .bottom-nav-padding {
        display: block;
    }

    /* Корректируем отступы для контента */
    main {
        padding-bottom: calc(var(--bottom-nav-height) + 20px);
    }
}
/* 992 px */
@media (min-width: 992px) {
    .header {
        display: block;
    }
}

/* Анимации */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.bottom-nav {
    animation: slideUp 0.3s ease;
}

/* Аватар в десктопной шапке */
.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}



/* === Из файла: /views/venues/show.php === */

/* HERO */

    .venue-hero {
        margin-bottom: 32px;
    }

    .venue-hero__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .venue-title {
        font-size: 32px;
        font-weight: 700;
    }

    .venue-badges {
        margin-top: 8px;
    }

    .venue-badge {
        color: var(--primary);
    }

    .badge--success {
        color: var(--success) !important;
    }
    /* GRID */

    .venue-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* CARD */

    .card {
        background: white;
        border-radius: 20px;
        padding: 24px;
        box-shadow: var(--card-shadow);
    }

    .card-header {
        background: none;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 18px;
    }

    /* INFO */

    .info-item {
        margin-bottom: 18px;
    }

    .info-label {
        font-size: 13px;
        color: var(--text-secondary);
    }

    .info-value {
        display: flex;
        gap: 8px;
        align-items: center;
        font-weight: 500;
    }

    /* MAP */

    .venue-map {
        height: 300px;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 16px;
    }

    /* SECTIONS */

    .section-title {
        font-size: 22px;
        font-weight: 600;
    }

    /* 📱 MOBILE */

    @media (max-width: 900px) {
        .venue-layout {
            grid-template-columns: 1fr;
        }

        .venue-title {
            font-size: 26px;
        }

        .venue-map {
            height: 240px;
        }
    }

    /* Анимация для LIVE индикатора */
    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }
    }

    /* Стили для карты */
    #venue-map {
        width: 100%;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .row {
            flex-direction: column;
        }

        .col-lg-5,
        .col-lg-6 {
            width: 100%;
        }
    }

/* === Из файла: /views/venues/index.php === */

/* Адаптивность */
@media screen and (max-width: 768px) {
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .venue-image {
        height: 120px;
    }
}

/* === Из файла: /views/static/privacy.php === */

.list-unstyled li {
    margin-bottom: 12px;
    line-height: 1.6;
}

ul:not(.list-unstyled) li {
    margin-bottom: 8px;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .card-body {
        padding: 20px !important;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
}

/* === Из файла: /views/admin/dashboard.php === */

.hover-card {
    transition: all 0.3s ease;
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-card {
    transition: all 0.3s ease;
    cursor: pointer;
}
.quick-action-card:hover {
    background: #e9ecef !important;
    transform: translateY(-3px);
}

.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.02);
}

.user-avatar-sm {
    font-weight: bold;
    font-size: 16px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

/* === Из файла: /views/coaches/index.php === */

.hover-card {
    transition: all 0.3s ease;
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
}
.avatar-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.game-details-page {
    max-width: 1100px;
    margin-top: 10px;
}

/* заголовок страницы */
.game-details-page h2 {
    font-weight: 700;
}

/* карточки */
.game-details-page .card {
    border-radius: 14px;
    margin-bottom: 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: none;
}

.game-details-page .card:not(.game-card) {
    background: #f8f9fb;
}

.game-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    align-items: start;
}

/* карточки внутри */
.game-info .card,
.game-map-wrapper .card {
    height: 100%;
}

@media (max-width: 992px) {
    .game-layout {
        grid-template-columns: 1fr;
    }
}

#map {
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
}

.game-map-wrapper .card-body {
    padding-bottom: 18px;
}

.game-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.game-info-grid p {
    background: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    margin: 0;
    font-size: 14px;
}

.game-info-grid strong {
    display: block;
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 576px) {
    .game-info-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        position: sticky;
        bottom: 120px;
        z-index: 10;
    }
}

.avatar-placeholder {
    font-weight: 600;
    font-size: 18px;
}

.game-details-page .bg-light.rounded {
    transition: 0.2s;
}

.game-details-page .bg-light.rounded:hover {
    background: #f1f3f5 !important;
}

.action-buttons {
    margin-top: 30px;
}

.action-buttons .btn {
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 36px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.star-rating i {
    font-size: 28px;
    color: #dee2e6;
    cursor: pointer;
    transition: 0.2s;
}

.star-rating i:hover {
    color: #ffc107;
    transform: scale(1.2);
}

.star-rating i.active {
    color: #ffc107;
}

.game-hero {
    background: linear-gradient(135deg,#ffffff,#f8fafc);
    padding: 26px 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.game-hero h2 {
    font-size: 32px;
    font-weight: 800;
}

.game-hero .badge {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 30px;
}

.game-info-grid p {
    border: 1px solid #f1f3f5;
    background: #fafafa;
}