/* General Reset */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #fff;
    scroll-behavior: smooth;
}

.container { padding: 4rem 10%; max-width: 1200px; margin: auto; }
.bg-accent { background-color: #222; border-top: 1px solid #d4af37; border-bottom: 1px solid #d4af37; }
.bg-light { background-color: #252525; }

/* Navigation */
.navbar {
    position: sticky; top: 0; background: rgba(0,0,0,0.95);
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%; z-index: 1000; border-bottom: 1px solid #d4af37;
}
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: #fff; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #d4af37; }
.logo { font-weight: bold; letter-spacing: 2px; color: #d4af37; }

/* Hero */
.hero {
    height: 70vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('banner.jpg') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero h1 { font-size: 3.5rem; letter-spacing: 4px; margin: 0; }
.btn-primary {
    background: #d4af37; color: #000; padding: 12px 30px;
    text-decoration: none; font-weight: bold; border-radius: 4px; border: none; cursor: pointer;
}

/* Countdown */
#countdown-container { background: #000; padding: 2rem 0; text-align: center; }
#countdown { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
.time-block span { display: block; font-size: 2.5rem; font-weight: bold; color: #d4af37; }
.time-block p { font-size: 0.7rem; color: #888; margin: 0; text-transform: uppercase; }

/* Media */
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Tickets & Schedule */
.ticket-wrapper { display: flex; flex-wrap: wrap; gap: 40px; }
.box-office-info { background: rgba(212, 175, 55, 0.1); padding: 15px; border-left: 4px solid #d4af37; margin-top: 15px; }
.ticket-actions { flex: 1; text-align: center; }
.img-placeholder { background: #fff; color: #333; padding: 20px; border-radius: 8px; font-weight: bold; }

.schedule-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: #222; }
.schedule-table th { background: #d4af37; color: #000; padding: 12px; }
.schedule-table td { padding: 12px; border-bottom: 1px solid #333; }
.no-show { color: #666; background: #111; }
.status-open { color: #d4af37; font-weight: bold; }
.status-closed { color: #ff4d4d; }

/* Cast */
.cast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.cast-card { background: #111; padding: 15px; border-radius: 8px; text-align: center; border-bottom: 2px solid #d4af37; }
.headshot-placeholder { width: 100%; aspect-ratio: 1; background: #333; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }

/* Form */
form { display: flex; flex-direction: column; max-width: 600px; margin: auto; }
input, textarea { padding: 12px; margin-bottom: 15px; border-radius: 4px; border: none; }
footer { text-align: center; padding: 2rem; opacity: 0.5; font-size: 0.8rem; }