:root { 
    --primary: #722F37; /* Theater Red */
    --secondary: #2c1810; /* Dark Wood */
    --accent: #D4AF37; /* Gold */
    --bg: #f9f5f0; 
    --text: #333;
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; background: var(--bg); color: var(--text); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: var(--primary); color: white; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.logo { font-size: 1.8rem; font-weight: bold; display: flex; align-items: center; gap: 10px; }
.logo i { color: var(--accent); }

/* Hero Section (Red Curtain Theme) */
.hero { 
    text-align: center; 
    padding: 80px 20px; 
    background: linear-gradient(135deg, var(--primary) 0%, #4a1a1f 100%); 
    color: white;
    border-bottom: 5px solid var(--accent);
}
.hero h1 { font-size: 3.5rem; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* Buttons */
.btn-primary, .btn-secondary { padding: 12px 30px; margin: 10px; border-radius: 30px; cursor: pointer; font-weight: bold; border: none; font-size: 1rem; transition: transform 0.2s; }
.btn-primary { background: var(--accent); color: var(--primary); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.btn-secondary { background: transparent; border: 2px solid var(--accent); color: white; }
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); }

/* Info & Video Section */
.info-section { padding: 60px 0; background: white; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.text-content h2 { color: var(--primary); font-size: 2rem; margin-bottom: 20px; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 5px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Footer */
.footer { background: #f0f0f0; padding: 40px 0 20px; border-top: 1px solid #ddd; margin-top: auto; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.partner-logos { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-logo { height: 60px; object-fit: contain; opacity: 0.8; transition: opacity 0.3s; }
.footer-logo:hover { opacity: 1; }
.admin-link { color: var(--primary); text-decoration: none; font-size: 0.9rem; font-weight: bold; opacity: 0.7; }
.admin-link:hover { opacity: 1; text-decoration: underline; }
.copyright { font-size: 0.8rem; color: #777; margin-top: 10px; }

/* Modals */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1000; backdrop-filter: blur(3px); }
.modal-content { background: white; margin: 10% auto; padding: 40px; width: 90%; max-width: 400px; border-radius: 15px; position: relative; text-align: center; border-top: 5px solid var(--primary); }
.close { position: absolute; right: 20px; top: 10px; font-size: 30px; cursor: pointer; color: #999; }
.close:hover { color: var(--primary); }
.input-group { margin-bottom: 15px; }
.input-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; font-size: 1rem; }
.btn-submit { width: 100%; padding: 12px; background: var(--primary); color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 1rem; font-weight: bold; }
.btn-submit:hover { background: #5a232b; }

/* Responsive */
@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}