/* ===== СТРАНИЦА О КИНОТЕАТРЕ ===== */
.about-section {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    border: 2px solid #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.about-title {
    color: #ffcc00;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 10px;
}

/* ===== СТАТИСТИКА ===== */
.cinema-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ff0000;
}

.stat-card-value {
    color: #ffcc00;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-card-label {
    color: #aaa;
    font-size: 14px;
}

/* ===== КАРТОЧКИ ЗАЛОВ ===== */
.halls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.hall-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #ffcc00;
    transition: all 0.3s;
}

.hall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.hall-name {
    color: #ffcc00;
    font-size: 20px;
    margin-bottom: 10px;
}

.hall-info {
    color: #ccc;
    margin-bottom: 8px;
}

.hall-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #444;
}

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

.hall-stat-value {
    color: #ffcc00;
    font-size: 18px;
    font-weight: bold;
}

.hall-stat-label {
    color: #aaa;
    font-size: 12px;
}

/* ===== СПИСКИ ===== */
.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 25px;
}

.features-list li:before {
    content: "✓";
    color: #ffcc00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== РОЛИ ПОЛЬЗОВАТЕЛЕЙ ===== */
.user-role-section {
    background: rgba(40, 40, 40, 0.8);
    border-left: 4px solid #ffcc00;
    padding: 15px;
    margin: 15px 0;
}

.admin-only {
    background: rgba(74, 0, 224, 0.2);
    border-left: 4px solid #8e2de2;
}

/* ===== НАВИГАЦИЯ ===== */
.navigation {
    text-align: center;
    margin: 30px 0;
}

/* ===== СВЕТЛАЯ ТЕМА ===== */
[data-theme="light"] .about-section {
    background: #ffffff !important;
    border-color: #e0e0e0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    color: #1a1a1a !important;
}

[data-theme="light"] .about-title {
    color: #b8860b !important;
    border-bottom-color: #ff0000 !important;
}

[data-theme="light"] .stat-card {
    background: #f9f9f9 !important;
    border-color: #e0e0e0 !important;
}

[data-theme="light"] .stat-card-value {
    color: #b8860b !important;
}

[data-theme="light"] .stat-card-label {
    color: #666666 !important;
}

[data-theme="light"] .hall-card {
    background: #f9f9f9 !important;
    border-color: #b8860b !important;
}

[data-theme="light"] .hall-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

[data-theme="light"] .hall-name {
    color: #b8860b !important;
}

[data-theme="light"] .hall-info {
    color: #444444 !important;
}

[data-theme="light"] .hall-stats {
    border-top-color: #e0e0e0 !important;
}

[data-theme="light"] .hall-stat-value {
    color: #b8860b !important;
}

[data-theme="light"] .hall-stat-label {
    color: #666666 !important;
}

[data-theme="light"] .features-list li {
    border-bottom-color: #e0e0e0 !important;
    color: #444444 !important;
}

[data-theme="light"] .features-list li:before {
    color: #b8860b !important;
}

[data-theme="light"] .user-role-section {
    background: #f9f9f9 !important;
    border-left-color: #b8860b !important;
    color: #444444 !important;
}

[data-theme="light"] .admin-only {
    background: rgba(74, 0, 224, 0.04) !important;
    border-left-color: #8e2de2 !important;
    color: #444444 !important;
}

[data-theme="light"] .navigation {
    /* без изменений */
}

[data-theme="light"] .about-section p,
[data-theme="light"] .about-section li,
[data-theme="light"] .about-section span,
[data-theme="light"] .about-section div {
    color: #444444 !important;
}

[data-theme="light"] .about-section ul,
[data-theme="light"] .about-section ol {
    color: #444444 !important;
}