* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
 
body {
    background: #1a1a2e;
    color: #fff; 
}

.header {
    background: #16213e;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e94560;
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    padding: 8px 15px;
    border-radius: 5px;
}

.menu a.active {
    background: #e94560;
    color: #1a1a2e;
}

/* Основной контент */
.container {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #e94560;
}

/* Карточки статистики */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #16213e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s;
}

.card h2 {
    font-size: 36px;
    color: #e94560;
    margin-bottom: 10px;
}

.card p {
    color: #888;
    font-size: 14px;
}


table {
    width: 100%;
    background: #16213e;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #0f3460;
}

th {
    background: #0f3460;
    color: #fff;
    font-weight: 500;
}

/* Статусы */
.status {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.green {
    background: #28a745;
}

.red {
    background: #dc3545;
}

.yellow {
    background:#c200ff73;
}

.blue{
    background: #4b4b949c;
}
.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.1s;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background-color: #e94560;
    color: #fff;
}

.btn-success {
    background-color: #28a745;
    color: #fff;
}

.btn-danger {
    background-color: #dc3545;
    color: #fff;
}

/* Фильмы */
.movies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.movie-card {
    background: #16213e;
    border-radius: 10px;
    overflow: hidden;
}

.movie-card:hover {
}

.movie-poster {
    height: 200px;
    background-color: #0f3460;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #e94560;
    overflow: hidden;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-info {
    padding: 15px;
}

.movie-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.movie-info p {
    color: #00dc19;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.movie-info span {
    background-color: #e94560;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    margin-right: 5px;
}

/* Фильтры */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: #16213e;
    border-radius: 10px;
}

.filters label {
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.filters input,
.filters select {
    margin-left: 10px;
    padding: 8px;
    border: 1px solid #0f3460;
    background: #1a1a2e;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Форма добавления сеанса */
.add-session {
    background: #16213e;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.add-session h3 {
    color: #e94560;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.add-session form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.add-session label {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.add-session input,
.add-session select {
    width: 100%;
    padding: 10px;
    border: 1px solid #0f3460;
    background: #1a1a2e;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s, background-color 0.3s;
}

.btn-submit {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 12px 25px;
    background-color: #e94560;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer; 
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 15px;
}


.btn-submit:active {
    transform: scale(0.98);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 20px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    .menu a {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
        margin: 0;
        border-bottom: 1px solid #0f3460;
    }

    .container {
        padding: 20px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .movies {
        grid-template-columns: 1fr;
    }

    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .filters {
        flex-direction: column;
        gap: 10px;
    }

    .add-session form {
        grid-template-columns: 1fr;
    }

    .film-detail {
        flex-direction: column;
    }

    .film-poster {
        text-align: center;
    }

    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    .card h2 {
        font-size: 28px;
    }

    .movie-info h3 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 7px 12px;
        font-size: 0.85rem;
    }

    .btn-submit {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    .film-card {
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}

.knop{
    margin-top: 40px;
    text-align: center;
}

.cnop {
  width: auto;
  height: 48px;
  background: #fb2828;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all 0.3s ease;
}


.cnop:active {
  transform: scale(0.96);
}

/* ФИЛЬМЫ */
.film-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem;
}

.film-poster img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.film-info {
    flex: 1;
    min-width: 250px;
}

.rating {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-buy {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}


.description {
    padding: 0 1.5rem 1.5rem;
}

.description h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-buttons a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.auth-buttons a[href="entrance.html"] {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}


.auth-buttons a[href="registration.html"] {
    color: #fff;
    background: #e94560;
    border: 2px solid #e94560;
}


.auth-buttons a:active {
    transform: scale(0.96);
}

.btn-filter {
    background-color: #e94560;
}

/* Преимущества */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    background: #16213e;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #e94560;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Ближайшие сеансы */
.sessions-today {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.session-item {
    display: flex;
    gap: 20px;
    background: #16213e;
    padding: 20px;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.session-item:hover {
    background: #1a2744;
    transform: translateX(5px);
}

.session-poster {
    width: 80px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.session-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.session-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.session-top {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.session-movie h4 {
    color: #fff;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.session-genre {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.session-hall {
    flex-shrink: 0;
}

.hall-badge {
    background: #0f3460;
    color: #e94560;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.session-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.session-seats {
    flex: 1;
    min-width: 200px;
}

.seats-bar {
    height: 6px;
    background: #0f3460;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.seats-fill {
    height: 100%;
    background: linear-gradient(90deg, #e94560, #c23152);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.seats-text {
    color: #888;
    font-size: 0.8rem;
}

.session-price {
    text-align: center;
}

.price-label {
    display: block;
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.price-value {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* Акции */
.promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.promo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.promo-orange {
    background: linear-gradient(135deg, #e94560, #c23152);
}

.promo-blue {
    background: linear-gradient(135deg, #4b6cb7, #182848);
}

.promo-green {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.btn-promo {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}


/* Подписка */
.subscribe-section {
    background: #16213e;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.subscribe-section h2 {
    color: #e94560;
    margin-bottom: 10px;
}

.subscribe-section p {
    color: #888;
    margin-bottom: 25px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.subscribe-input {
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #0f3460;
    background: #1a1a2e;
    color: #fff;
    font-size: 1rem;
    min-width: 300px;
    outline: none;
    transition: border-color 0.3s ease;
}

.subscribe-input:focus {
    border-color: #e94560;
}

.btn-subscribe {
    background: #e94560;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
/* Футер */
.footer {
    background: #0d1117;
    padding: 40px 0 20px;
    margin-top: 20px;
}

/* РЕГИСТРАЦИЯ  */

body.reg-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

.reg-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #e94560;
}

.reg-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.reg-card-header {
    background: linear-gradient(135deg, #e94560 0%, #c23152 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.reg-card-header h2 {
    margin: 0;
    font-weight: 700;
}

.reg-card-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

.reg-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.reg-form .form-control:focus {
    border-color: #e94560;
}

.reg-form .form-control.is-valid {
    border-color: #28a745;
}

.reg-form .form-control.is-invalid {
    border-color: #dc3545;
}

.reg-form .valid-feedback,
.reg-form .invalid-feedback {
    font-size: 0.875rem;
}

.reg-form .form-label {
    font-weight: 600;
    color: #0d1b3e;
}

.btn-reg {
    background: linear-gradient(135deg, #e94560 0%, #c23152 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}


.btn-back {
    border: 2px solid #6c757d;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}


.password-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: 8px;
    background: #e0e0e0;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
}

.password-strength-bar.weak {
    width: 33%;
    background: #dc3545;
}

.password-strength-bar.medium {
    width: 66%;
    background: #ffc107;
}

.password-strength-bar.strong {
    width: 100%;
    background: #28a745;
}

.password-requirements {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 8px;
    padding-left: 0;
}

.password-requirements li {
    list-style: none;
    padding: 2px 0;
}

.password-requirements li.valid {
    color: #28a745;
}

.password-requirements li.valid::before {
    content: "";
}

.password-requirements li.invalid::before {
    content: "";
}

.reg-link-color {
    color: #e94560;
}

.reg-link-color:hover {
    color: #c23152;
}

.login-forgot-link {
    color: #e94560;
}

.login-forgot-link:hover {
    color: #c23152;
}

.error-msg {
    display: block;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    min-height: 1em;
}

.alert-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    background: #dc3545;
    color: #fff;
    text-align: center;
}

.alert-success-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    background: #28a745;
    color: #fff;
    text-align: center;
}
/* =============================== */
/* ФУТЕР                           */
/* =============================== */

.footer {
    background: #0d1117;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #e94560;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #e94560;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #16213e;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}
/* =============================== */
/* ЕДА                          */
/* =============================== */

.banner-food {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.food-promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.food-promos .promo-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    text-align: left;
}

.food-promos .promo-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.food-promos .promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-promos .promo-card:hover .promo-image img {
    transform: scale(1.1);
}

.food-promos .promo-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
}

.food-promos .promo-card p {
    padding: 0 20px 20px;
    margin: 0;
}

.food-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .category-btn {
            padding: 10px 20px;
            background: #16213e;
            color: #fff;
            border: 2px solid #0f3460;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            transition: background 0.3s, border-color 0.3s;
        }

        .category-btn.active {
            background: #e94560;
            border-color: #e94560;
        }

        .food-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .food-card {
            background: #16213e;
            border-radius: 12px;
            overflow: hidden;
        }

        .food-image {
            height: 180px;
            background-color: #0f3460;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .food-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .food-info {
            padding: 15px;
        }

        .food-category-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #0f3460;
            color: #e94560;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .food-info h3 {
            color: #fff;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .food-info p {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .food-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .food-price {
            color: #e94560;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .btn-add {
            padding: 8px 18px;
            background: #e94560;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-add:active {
            transform: scale(0.96);
        }

        @media (max-width: 768px) {
            .food-grid {
                grid-template-columns: 1fr;
            }
        }

/* =============================== */
/* НОВОСТИ                        */
/* =============================== */

/* =============================== */
/* ВЫБОР МЕСТ В КИНОТЕАТРЕ        */
/* =============================== */

.banner-films {
    background: linear-gradient(135deg, #4b6cb7, #182848);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #16213e;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #0f3460;
}

.modal-header h2 {
    color: #e94560;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #e94560;
}

.modal-body {
    padding: 25px;
}

.selected-film-name {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Экран */
.screen {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    letter-spacing: 8px;
    margin-bottom: 10px;
    padding: 8px;
    background: linear-gradient(180deg, rgba(233, 69, 96, 0.3), transparent);
    border-radius: 8px;
}

/* Схема зала */
.cinema-hall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.cinema-row {
    display: flex;
    gap: 6px;
    align-items: center;
}

.row-label {
    color: #888;
    font-size: 0.75rem;
    width: 25px;
    text-align: center;
}

.seat {
    width: 32px;
    height: 32px;
    border-radius: 6px 6px 2px 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.seat:hover:not(.seat-occupied) {
    transform: scale(1.2);
}

/* Свободное место */
.seat-available {
    background: #0f3460;
    border-color: #1a4a8a;
}

.seat-available:hover {
    background: #1a5ab0;
}

/* Выбранное место */
.seat-selected {
    background: #e94560;
    border-color: #ff6b81;
}

/* Занятое место */
.seat-occupied {
    background: #333;
    border-color: #444;
    cursor: not-allowed;
    opacity: 0.5;
}

/* VIP место */
.seat-vip {
    background: #c23152;
    border-color: #e94560;
}

.seat-vip:hover {
    background: #e94560;
}

/* Проход */
.aisle {
    width: 20px;
}

/* Легенда */
.legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #0f3460;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.85rem;
}

.seat-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px 4px 2px 2px;
}

.seat-icon.seat-available {
    background: #0f3460;
    border: 2px solid #1a4a8a;
}

.seat-icon.seat-selected {
    background: #e94560;
    border: 2px solid #ff6b81;
}

.seat-icon.seat-occupied {
    background: #333;
    border: 2px solid #444;
    opacity: 0.5;
}

.seat-icon.seat-vip {
    background: #c23152;
    border: 2px solid #e94560;
}

/* Информация о выборе */
.selection-info {
    text-align: center;
    padding: 15px;
    background: #0f3460;
    border-radius: 8px;
    margin-bottom: 15px;
}

.selection-info p {
    color: #fff;
    margin: 5px 0;
    font-size: 1rem;
}

.selection-info span {
    color: #e94560;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Кнопка подтверждения */
.btn-buy-confirm {
    display: block;
    width: 100%;
    padding: 14px;
    background: #e94560;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-confirm:hover:not(:disabled) {
    background: #ff6b81;
    transform: translateY(-2px);
}

.btn-buy-confirm:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.6;
}

/* =============================== */
/* НОВОСТИ                        */
/* =============================== */
.news-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 30px;
    background: #16213e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.news-image {
    width: 300px;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-content h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Адаптивность новостей */
@media (max-width: 1024px) {
    .news-image {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        height: 250px;
    }

    .page-banner {
        padding: 40px 20px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .news-content h2 {
        font-size: 1.2rem;
    }

    .news-content p {
        font-size: 0.9rem;
    }

    .seat {
        width: 24px;
        height: 24px;
    }

    .row-label {
        font-size: 0.65rem;
        width: 20px;
    }

    .aisle {
        width: 10px;
    }

    .cinema-hall {
        gap: 5px;
    }

    .modal-content {
        margin: 10px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 15px;
    }

    .legend {
        gap: 10px;
    }

    .legend-item {
        font-size: 0.75rem;
    }
}




 