/* css/theater.css - Cinematic Theater Styles */

.theater-body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    min-height: 100vh;
}

.billboard {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    border-bottom: 3px solid var(--empire-gold);
}

.billback-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
}

.billboard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
}

.billboard-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.billboard-info p {
    max-width: 600px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--empire-text);
}

.billboard-controls {
    display: flex;
    gap: 1rem;
}

.btn-play {
    background: var(--empire-gold);
    color: var(--empire-dark);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
}

.btn-info {
    background: transparent;
    border: 1px solid var(--empire-gold);
    color: var(--empire-gold);
    padding: 1rem 2rem;
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.film-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.film-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--empire-gold);
}

.film-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.film-info {
    padding: 1.5rem;
}

.film-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--empire-gold);
}

.film-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--empire-text-muted);
    font-size: 0.9rem;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status.now_showing {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.status.coming_soon {
    background: rgba(212, 175, 55, 0.2);
    color: var(--empire-gold);
    border: 1px solid var(--empire-gold);
}

.status.archived {
    background: rgba(136, 136, 136, 0.2);
    color: var(--empire-text-muted);
    border: 1px solid var(--empire-text-muted);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

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

.video-container {
    width: 90%;
    max-width: 1200px;
    position: relative;
}

.video-container video {
    width: 100%;
    border: 2px solid var(--empire-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--empire-gold);
    font-size: 2rem;
    cursor: pointer;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--empire-text-muted);
    padding: 0.5rem 1.5rem;
}

.tab-btn.active, .tab-btn:hover {
    border-color: var(--empire-gold);
    color: var(--empire-gold);
    background: rgba(212, 175, 55, 0.1);
}
