:root {
    --cinema-red: #b4232a;
    --cinema-dark: #151515;
    --cinema-gold: #f1b632;
}

body {
    background: #3a3e46;
    color: #222;
}

.hero {
    background:
        linear-gradient(120deg, rgba(10, 10, 10, .92), rgba(180, 35, 42, .82)),
        radial-gradient(circle at top right, #3b3b3b, #111);
    border-radius: 22px;
    color: #fff;
    padding: 3.5rem 2rem;
    margin-bottom: 2rem;
}

.movie-card {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    height: 100%;
}

.movie-card img,
.poster-placeholder {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: linear-gradient(135deg, #222, #b4232a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
}

.schedule-pill {
    border: 1px solid #555;
    border-radius: 12px;
    padding: .8rem;
    background: #2b2b2b;
    color: white;
}

.stat-card {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.screen {
    background: linear-gradient(#ddd, #fff);
    border-top: 8px solid #666;
    border-radius: 50% 50% 0 0;
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
    color: #555;
    font-weight: 700;
    letter-spacing: .2rem;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(42px, 1fr));
    gap: .55rem;
    overflow-x: auto;
    padding-bottom: .5rem;
}

.seat {
    position: relative;
}

.seat input {
    position: absolute;
    opacity: 0;
}

.seat label {
    display: block;
    text-align: center;
    padding: .65rem .25rem;
    border: 1px solid #cfd4da;
    background: #fff;
    border-radius: 10px 10px 4px 4px;
    cursor: pointer;
    font-size: .86rem;
    font-weight: 600;
}

.seat input:checked + label {
    background: #198754;
    border-color: #198754;
    color: #fff;
}

.seat.booked label {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
    cursor: not-allowed;
}

.table-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.ticket-box {
    border: 2px dashed #b4232a;
    border-radius: 18px;
    background: #fff;
    padding: 1.5rem;
}

.badge-status {
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .seat-grid {
        grid-template-columns: repeat(5, minmax(42px, 1fr));
    }

    .hero {
        padding: 2.2rem 1.25rem;
    }
}

@media print {
    nav,
    footer,
    .no-print,
    .alert {
        display: none !important;
    }

    body {
        background: #fff;
    }

    main {
        padding: 0 !important;
    }
}
