:root {
    --bg: #0B0D10;
    --surface: #16191D;
    --surface-alt: #1E2226;
    --border: #2A2E33;
    --gold: #D4AF37;
    --red: #C1272D;
    --teal: #3FA5A0;
    --text: #F2EFE9;
    --muted: #8B9098;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

#root {
    min-height: 100vh;
}

.display {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
}

.marquee-strip {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 0 6px;
    background: linear-gradient(180deg, #000 0%, var(--bg) 100%);
}

.bulb {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .35;
    animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: .25;
        box-shadow: 0 0 0px var(--gold);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 8px var(--gold);
    }
}

header.site {
    text-align: center;
    padding: 6px 20px 28px;
    border-bottom: 1px solid var(--border);
}

.logo-mark {
    display: flex;
    justify-content: center;
}

.logo-mark svg {
    width: clamp(160px, 22vw, 220px);
    height: auto;
    filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.2));
}

header.site p {
    color: var(--muted);
    margin: 6px 0 0;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.controls {
    max-width: 1400px;
    margin: 28px auto 8px;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.tabs {
    display: flex;
    gap: 8px;
}

.tab {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.06em;
    font-size: 1rem;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    transition: all .18s ease;
}

.tab:hover {
    color: var(--text);
    border-color: var(--gold);
}

.tab.active {
    background: var(--gold);
    color: #0B0D10;
    border-color: var(--gold);
}

.studio-select {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 12px;
}

.count-note {
    color: var(--muted);
    font-size: 0.8rem;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto 6px;
}

.grid {
    max-width: 1400px;
    margin: 12px auto 60px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width:1100px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:720px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:460px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .16s ease, border-color .16s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.card-footer {
    display: flex;
    justify-content: center;
    padding: 0 12px 14px;
    margin-top: auto;
}

.buy-tickets-button {
    background: linear-gradient(180deg, #d7b84d 0%, #c89f22 100%);
    color: #0B0D10;
    border: none;
    border-radius: 999px;
    padding: 8px 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease;
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.18);
}

.buy-tickets-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(212, 175, 55, 0.24);
}

.buy-tickets-button--small {
    width: 100%;
    margin-top: 12px;
}

.ticket-modal-box {
    width: min(100%, 380px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.ticket-modal-body {
    padding: 16px 18px 18px;
}

.ticket-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticket-label {
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ticket-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #0F1215;
    color: var(--text);
    padding: 10px 12px;
    text-align: center;
    font-size: 0.95rem;
}

.ticket-results-header {
    color: var(--text);
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.ticket-results-list {
    margin: 0;
    padding-left: 18px;
    color: #dfe3e8;
}

.ticket-results-list li + li {
    margin-top: 8px;
}

.thumb {
    position: relative;
    aspect-ratio: 16/10;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.thumb .badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
}

.badge.current {
    background: var(--red);
}

.badge.upcoming {
    background: var(--teal);
    color: #04201f;
}

.thumb .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .16s ease;
}

.card:hover .thumb .play {
    opacity: 1;
}

.thumb .play::after {
    content: '';
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
}

.thumb .title-on-poster {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.card-body {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.studio-name {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.release-date {
    font-size: 0.68rem;
    color: var(--muted);
    white-space: nowrap;
}

.snippet {
    font-size: 0.78rem;
    line-height: 1.42;
    color: #C7CBD1;
    margin: 0;
}

footer.site {
    text-align: center;
    padding: 24px;
    color: var(--muted);
    font-size: 0.75rem;
    border-top: 1px solid var(--border);
    align-items: center;
}

.footer-btn {
    float:right;

  padding: 10px 20px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 5, 6, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
    animation: fadeIn .15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-box {
    width: 100%;
    max-width: 900px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.modal-header .modal-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0;
}

.modal-header .modal-sub {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 2px;
}

.modal-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.modal-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
