body {
    background-color: #0f172a;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.movie-container { text-align: center; width: 400px; }

.screen {
    background: white;
    height: 70px;
    width: 100%;
    margin: 15px 0;
    transform: rotateX(-45deg);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
    color: #333;
    line-height: 70px;
    font-weight: bold;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.seat {
    height: 20px;
    width: 25px;
    background: #444451;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.seat:hover:not(.occupied) { transform: scale(1.2); background: #666; }
.seat.selected { background-color: #00f2ff; }
.seat.occupied { background-color: #fff; cursor: not-allowed; opacity: 0.5; }

.legend {
    display: flex;
    justify-content: space-around;
    background: rgba(0,0,0,0.2);
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}

.item { display: flex; align-items: center; gap: 5px; }

.stats { margin-top: 20px; color: #94a3b8; }
#count, #total { color: #00f2ff; font-weight: bold; }

.book-btn {
    background: #00f2ff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}