@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Vidaloka&display=swap');

:root {
    /* Colors */
    --primary: #990033;
    --primary-light: #c2185b;
    --primary-dark: #7a0028;
    --bg-header: rgba(10, 10, 10, 0.95);
    --bg-footer: #050505;
    --bg-main: #0a0a0a;
    --bg-secondary: #141414;
    --bg-accent: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --body-color: #ffffff;
    --heading-color: var(--primary);
    --subheading-color: var(--primary);
    --banner-text-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --bg-black-section: #000000;
    --text-on-black: #ffffff;

    /* Spacing & Sizing */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius: 0px;
    --container-width: 1200px;
}

/* Light Mode Variations */
[data-theme="light"] {
    --bg-header: rgba(255, 255, 255, 0.95);
    --bg-footer: #f0f0f0;
    --bg-main: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-accent: #f0f0f0;
    --text-primary: #0a0a0a;
    --text-secondary: #0a0a0a;
    --body-color: #0a0a0a;
    --heading-color: var(--primary);
    --subheading-color: var(--primary);
    --banner-text-color: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --bg-black-section: #ffffff;
    --text-on-black: #0a0a0a;
}

[data-theme="light"] .new-footer {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
    border-top: 1px solid rgba(153, 0, 51, 0.2);
}

[data-theme="light"] .new-footer-brand .logo {
    color: var(--primary) !important;
}

[data-theme="light"] .new-footer-section h4 {
    color: #0a0a0a;
}

[data-theme="light"] .newsletter-form button {
    background: var(--primary);
    border: none;
    color: white;
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    background: #ffffff;
    border: 1px solid #ddd;
    color: #0a0a0a;
}

[data-theme="light"] .new-footer-brand p,
[data-theme="light"] .new-footer-section ul li a,
[data-theme="light"] .new-footer-newsletter p,
[data-theme="light"] .new-footer-bottom p,
[data-theme="light"] .new-footer-bottom-links a {
    color: #0a0a0a !important;
}

[data-theme="light"] .new-footer-section h4 {
    border-bottom-color: var(--primary);
}

[data-theme="light"] .new-footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--body-color);
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.8em;
    overflow-x: hidden;
    transition: background-color 0.5s ease;
}

p {
    color: var(--text-secondary);
}

h1,
h2 {
    font-family: 'Vidaloka', serif;
    font-weight: 800;
    color: var(--heading-color);
}

h3 {
    font-family: 'Vidaloka', serif;
    font-weight: 600;
    color: var(--heading-color);
}

h4,
.accent-font {
    font-family: 'Vidaloka', serif;
    font-weight: 400;
    color: var(--subheading-color);
}

h5,
h6,
.section-title,
.page-banner h1,
.banner-content h1 {
    color: var(--heading-color);
}

.eyebrow,
.subheading,
.subtitle {
    color: var(--subheading-color);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* High Contrast Hero Visibility (Force for Dark Image Overlays) */
.auth-page-hero,
.error-page-hero,
.future-teaser-banner,
.future-teaser-view {
    color: #ffffff !important;
}

.auth-page-hero .section-title,
.error-page-hero .section-title,
.future-teaser-banner .future-teaser-view .reveal,
.error-page-hero span,
.auth-page-hero span,
.future-teaser-view span {
    color: var(--primary) !important;
}

.auth-page-hero p,
.error-page-hero p,
.future-teaser-banner p,
.future-teaser-view p {
    color: rgba(0, 0, 0, 0.8) !important;
}

/* Auth Minimalist Header (Overriding Full Navbar) */
.auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1001;
    background: transparent;
}

@media (max-width: 768px) {
    .auth-header {
        padding: 2rem 2rem;
    }
}

[data-theme="light"] {
    --bg-main: #f8f8f8;
    --bg-secondary: #ffffff;
    --bg-header: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border-color: rgba(0, 0, 0, 0.1);
    --hero-overlay: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .bento-card,
[data-theme="light"] .review-card,
[data-theme="light"] .login-card,
[data-theme="light"] .register-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #444 !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .bento-card h4,
[data-theme="light"] .review-card h4,
[data-theme="light"] .login-card h3,
[data-theme="light"] .register-card h2,
[data-theme="light"] .login-card label,
[data-theme="light"] .register-card label {
    color: #1a1a1a !important;
}

[data-theme="light"] .bento-card p,
[data-theme="light"] .review-card p,
[data-theme="light"] .login-card p,
[data-theme="light"] .register-card p {
    color: #444 !important;
}

[data-theme="light"] .review-card {
    border-left: 4px solid var(--primary) !important;
}

.container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 3em; /* Aligning with section horizontal padding */
}

/* Global Section Spacing */
section, .section-padding {
    width: 100%;
    padding: 3em 3em 0 3em; /* Top: 3em, Horizontal: 3em, Bottom: 0 */
    box-sizing: border-box;
}

/* Add bottom padding only to the last section of each page */
main section:last-of-type, 
main .section-padding:last-of-type {
    padding-bottom: 3em;
}

/* Ensure container inside section doesn't add conflicting padding */
section .container, 
.section-padding .container {
    width: 100%;
    padding: 0;
}

@media (max-width: 1024px) {
    section, .section-padding {
        padding: 3em 2.5em 0 2.5em; /* Slightly tighter on tablet */
    }
    main section:last-of-type, 
    main .section-padding:last-of-type {
        padding-bottom: 3em;
    }
    .banner-content h1 {
        font-size: 3rem;
    }
    .container {
        padding: 0 2.5em;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none; /* Hide standard links to use hamburger */
    }
    .menu-toggle {
        display: flex; /* Show hamburger */
    }
    .nav-actions .btn-outline {
        display: none; /* Hide login button in header on mobile */
    }
    
    /* Mobile Menu Drawer */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: var(--bg-header);
        backdrop-filter: blur(20px);
        padding: 8rem 3rem;
        gap: 2rem;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
}

@media (max-width: 768px) {
    section, .section-padding {
        padding: 2.5em 1.5em 0 1.5em;
    }
    main section:last-of-type, 
    main .section-padding:last-of-type {
        padding-bottom: 2.5em;
    }
    .container {
        padding: 0 1.5em;
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 28px;
    }
    
    /* Responsive Grids */
    .grid, .events-grid, .merchandise-grid, .pro-feature-grid, .comedians-grid {
        grid-template-columns: 1fr !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .pro-feature-grid {
        margin-top: -4rem; /* Less overlap on mobile */
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    .pro-hero {
        min-height: 60vh;
        height: 60vh;
    }
    .pro-hero-btns {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* RTL Support Logic */
[dir="rtl"] {
    direction: rtl;
}

/* Layout Helpers */
.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.grid {
    display: grid;
    gap: 2rem;
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: whitesmoke;
}

.navbar.scrolled {
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0; /* Tightened padding */
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    padding: 0 4rem; /* Explicit header padding */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.logo span {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle,
.rtl-toggle {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover,
.rtl-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-accent);
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-radius: var(--radius);
    padding: 1rem 0;
    z-index: 1001;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 0.8rem 1.5rem !important;
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-primary) !important;
}

.dropdown-content a:hover {
    opacity: 1;
    background: var(--glass-bg);
    color: var(--primary) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
    padding: 0.95rem 2.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 17px;
    min-width: 180px;
    height: 48px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(153, 0, 51, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Sections & Page Banners */
section {
    width: 100%;
    padding: 2em 3em 0 3em;
    box-sizing: border-box;
}

.pro-feature-card div,
.pro-feature-card h3,
.pro-feature-card p,
.comedian-overlay,
.comedian-overlay h3,
.comedian-overlay p {
    color: #ffffff !important;
}
 
.about-banner-legacy,
.events-banner-showtime,
.icons-banner-header,
.member-banner-circle,
.archive-banner-header,
.concierge-banner-header,
.error-not-found-banner,
.future-teaser-banner{
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh !important;
    height: 70vh !important;
    color: #ffffff;
}

.page-banner,
.hero,
.hero-v2,
.pro-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh !important;
    height: 90vh !important;
    color: #ffffff;
}

/* Black overlays for all banners */
.page-banner::before,
.about-banner-legacy::before,
.events-banner-showtime::before,
.icons-banner-header::before,
.member-banner-circle::before,
.archive-banner-header::before,
.concierge-banner-header::before,
.error-not-found-banner::before,
.future-teaser-banner::before,
.hero::before,
.hero-v2::before,
.pro-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    opacity: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bg-black-media {
    background: var(--bg-black-section) !important;
    color: var(--text-on-black) !important;
    position: relative;
    overflow: hidden;
}

.bg-black-media h2,
.bg-black-media h3,
.bg-black-media p {
    color: #7a0029 !important;
}

.bg-black-media .media-container {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.bg-black-media img,
.bg-black-media video {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.section-title {
    font-size: 35px;
    color: var(--heading-color);
    font-weight: 700px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--subheading-color);
    max-width: 600px;
    margin: 0 auto 2em;
}

/* Hero Section V1 & V3 */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 20%, transparent 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
    display: block;
    font-style: italic;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Professional Hero (Centered) */
.pro-hero {
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pro-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    z-index: 1;
}

.pro-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.pro-hero h1 {
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.pro-hero h1 span {
    color: #d4af37; /* Gold contrast */
}

.pro-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

.pro-hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Play Button */
.play-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 700;
}

.play-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid white;
    margin-left: 5px;
}

.play-btn:hover .play-icon {
    border-color: #990033;
    background: rgba(212, 175, 55, 0.1);
}

/* Feature Cards Overlay */
.pro-feature-grid {
    margin-top: -8rem;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pro-feature-card {
    height: 250px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.pro-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pro-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.pro-feature-card div {
    position: relative;
    z-index: 2;
}

.pro-feature-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.pro-feature-card p {
    font-size: 0.95rem;
    text-align: justify;
    opacity: 0.8;
    color: white;
    opacity: 1;
}

/* Upcoming Events Cards */
.events-grid, 
.events-main-listings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.event-card:hover {
    background: var(--bg-accent);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.event-date {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.event-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.event-card p {
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* Comedian Profiles */
.comedians-grid, 
.icons-grid-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.comedian-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    /* aspect-ratio: 4/5; */
}

.comedian-card img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.comedian-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.comedian-card:hover img {
    transform: scale(1.1);
}

.comedian-card:hover .comedian-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Community / Bento Section */
.community-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: min-content;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .community-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

.bento-item {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-color);
    color: var(--body-color);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item.featured {
    background: var(--primary);
    color: white;
    border: none;
}

.bento-item.featured h2 {
    color: white;
}

/* =========================================
   CONSOLIDATED INTERNAL STYLES
   ========================================= */

/* Hero & Content (index2.html) */
.hero-v2 {
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: #000;
    overflow: hidden;
}

.hero-v2 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(0.5);
}


.hero-v2 .content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

/* Bento Layouts */
.bento-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    padding: 2rem 0;
}

.bento-card {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: var(--bg-accent);
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-card.highlight {
    background: var(--primary);
    color: white;
    border: none;
}

/* Events & Tickets Styles */
.event-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.seat-map-container {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius);
    margin: 4rem 0;
    text-align: center;
    border: 1px solid var(--border-color);
}

.screen {
    background: #fff;
    height: 6px;
    width: 100%;
    margin: 20px 0;
    transform: rotateX(-45deg);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.7);
}

.row {
    display: flex;
    justify-content: center;
}

.seat {
    background: #444;
    height: 24px;
    width: 24px;
    margin: 4px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.seat:hover {
    background: #666;
}

.seat.selected {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.seat.occupied {
    background: #111;
    cursor: not-allowed;
    opacity: 0.5;
}

.showcase {
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin-bottom: 3rem;
}

.showcase li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.countdown-container, 
.events-ticker-countdown {
    background: var(--primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
    border-radius: var(--radius);
    margin: 3rem 0;
    box-shadow: 0 20px 50px rgba(153, 0, 51, 0.2);
}

#countdown {
    font-size: 5rem;
    font-weight: 800;
    font-family: 'Vidaloka', serif;
}

/* Gallery & Reviews */
.gallery-grid, 
.archive-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-thumbnail {
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.video-thumbnail:hover {
    filter: contrast(1.1);
}

.rating-stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.review-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

/* Pricing & Benefits Cards */
.pricing-table, 
.member-tier-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 4rem 0;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-table th,
.pricing-table td {
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background: var(--bg-accent);
    color: var(--primary);
    font-size: 1.6rem;
}

.pricing-table .feature-name {
    text-align: left;
    font-weight: 600;
    width: 40%;
    padding-left: 3rem;
}

.pricing-table .check {
    color: #4caf50;
    font-weight: bold;
}

.pricing-table .cross {
    color: #f44336;
    font-weight: bold;
}

.benefit-card {
    background: var(--bg-secondary);
    padding: 4rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Contact Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info-item {
    margin-bottom: 2.5rem;
}

.contact-info-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.map-container {
    height: 500px;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 4rem;
}

/* Auth Pages (Login/Register) */
.login-container,
.registration-container,
.auth-login-view,
.auth-register-view {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    position: relative;
}

.login-container::before,
.registration-container::before,
.auth-login-view::before,
.auth-register-view::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.login-card,
.registration-card {
    background: var(--bg-accent);
    padding: 4rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(20px);
}

.registration-card {
    max-width: 800px;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(153, 0, 51, 0.1);
}

/* Footer — styles moved to new .footer-brand / .footer-nav-grid / .footer-copy classes below */

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .container {
        padding: 0 2em 2em 2em;
    }

    .events-grid,
    .community-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .comedians-grid,
    .icons-grid-display {
        grid-template-columns: repeat(2, 1fr);
    }

    .pro-feature-grid {
        grid-template-columns: 1fr;
    }

    .pro-hero h1 {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    section {
        padding: 4rem 2rem;
    }

    .btn {
        min-width: 160px;
        padding: 0.85rem 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pro-hero h1 {
        font-size: 2rem;
    }

    .events-grid,
    .comedians-grid,
    .community-bento,
    .icons-grid-display {
        grid-template-columns: 1fr;
    }

    .pro-feature-grid {
        grid-template-columns: 1fr;
        margin-top: -5rem;
    }

    .community-bento {
        grid-template-rows: auto;
    }

    .bento-item.large {
        grid-column: span 1;
    }

    .bento-membership {
        grid-column: span 1 !important;
        grid-row: auto !important;
    }

    .bento-gallery {
        grid-column: span 1 !important;
        grid-row: auto !important;
    }

    .bento-testimonial {
        grid-column: span 1 !important;
    }

    .bento-cta {
        grid-column: span 1 !important;
        flex-direction: column;
        text-align: center;
    }

    .bento-cta-text {
        max-width: 100%;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .btn {
        min-width: 140px;
        padding: 0.8rem 1.8rem;
        font-size: 16px;
        height: auto;
    }

    .hero-btns,
    .pro-hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-block {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1,
    .pro-hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-btns,
    .pro-hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .btn {
        min-width: 100%;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 15px;
        height: auto;
    }

    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .pro-feature-grid {
        margin-top: -3rem;
    }

    .pro-feature-card {
        height: 200px;
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events-grid,
    .comedians-grid,
    .gallery-grid,
    .community-bento {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    body {
        font-size: 14px;
    }

    .hero h1,
    .pro-hero h1,
    .section-title {
        font-size: 1.4rem;
    }

    section {
        padding: 1.5rem 0.75rem;
    }

    .btn {
        padding: 0.6rem 0.8rem;
        font-size: 13px;
        min-width: auto;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    .theme-toggle,
    .rtl-toggle {
        width: 35px;
        height: 35px;
    }
}

/* Floating Elements & Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transition: var(--transition);
}

.reveal.active {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 1;
}

/* Premium Hover Extensions */
img, .bento-card, .review-card, .btn {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover, .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.image-hover-zoom {
    overflow: hidden;
    border-radius: var(--radius);
}
.image-hover-zoom img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.image-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-header);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--bg-main);
    transform: translateY(-5px) !important;
}

/* ============================================================
   GLOBAL TYPOGRAPHY OVERRIDES — all text 16px base
   ============================================================ */
body, p, li, span, label, input, textarea, button {
    font-size: 17px;
    color: var(--body-color);
}

a { font-size: inherit; }

h1, h2 {
    font-size: 35px;
    color: var(--heading-color);
}
h3 {
    font-size: 23px;
    color: var(--subheading-color);
}
h4      { font-size: 18px; }
small   { font-size: 14px; }

/* Override large decorative sizes — keep cinematic feel */
.section-title       { font-size: 35px; }
.pro-hero h1         { font-size: 35px; }
.cinema-hero-title   { font-size: 35px; }
.stat-number         { font-size: 3.5rem; }
.bento-membership h2 { font-size: 35px; }
.bento-cta h2        { font-size: 35px; }
.newsletter-box h2   { font-size: 35px; }
.tier-price          { font-size: 2rem; }
.logo                { font-size: 1.6rem; }

/* ============================================================
   PAGE BANNER / HERO UTIL
   ============================================================ */
.page-banner {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), #111;
    background-size: cover;
    background-position: center;
    color: var(--banner-text-color);
}

.page-banner h1,
.hero h1,
.hero-v2 h1,
.pro-hero h1,
.banner-content h1 {
    font-size: 35px;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.page-banner p,
.hero p,
.hero-v2 p,
.pro-hero p,
.banner-content p {
    font-size: 17px;
    color: var(--banner-text-color);
    opacity: 1;
    margin-bottom: 1rem;
}

/* ============================================================
   SECTION LABEL / EYEBROW
   ============================================================ */
.eyebrow {
    color: #7a0029;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: block;
}

.eyebrow-dark {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: block;
}

/* ============================================================
   SECTION HEADER (centred label + title)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .eyebrow { margin-bottom: 1rem; }

/* ============================================================
   BENTO GRID — COMMUNITY HUB
   ============================================================ */
.bento-item {
    padding: 3rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

/* Membership big card */
.bento-membership {
    grid-column: span 8;
    grid-row: span 2;
    background: linear-gradient(rgba(0, 0, 0, 0.664), rgba(0,0,0,0.884)), url('../images/1.jpg') center/cover;
    border: 1px solid var(--primary);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.bento-membership h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #fff;
}

.bento-membership p {
    font-size: 17px;
    max-width: 500px;
    margin-bottom: 3rem;
    opacity: 1;
    color: #fff;
}

/* Gallery preview card */
.bento-gallery {
    grid-column: span 4;
    grid-row: span 2;
    background: linear-gradient(rgba(0, 0, 0, 0.671), rgba(0,0,0,0.9)), url('../images/6.jpg') center/cover;
    border: none;
    position: relative;
    overflow: hidden;
}

.bento-gallery-inner {
    padding: 3rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.bento-gallery-inner h3 {
    margin: 0;
    font-size: 23px;
    color: #fff;
}

.bento-gallery-inner p {
    color: #fff;
    opacity: 1;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.bento-gallery-inner .btn {
    margin-top: 1.5rem;
    color: #fff;
    border-color: #fff;
}

/* Testimonial card */
.bento-testimonial {
    grid-column: span 4;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/7.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.bento-testimonial p {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.bento-testimonial small {
    color: #7a0029;
    font-weight: bold;
}

/* Contact CTA card */
.bento-cta {
    grid-column: span 8;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/8.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.bento-cta h2 {
    margin: 0;
    font-size: 2.5rem;
    color: #fff;
}

.bento-cta h2 span {
    color: #7a0029;
}

.bento-cta p {
    margin-top: 0.5rem;
    opacity: 1;
    color: #fff;
}

.bento-cta .btn {
    color: #fff;
    border-color: #fff;
}

.bento-cta-text { max-width: 60%; }

/* ============================================================
   MERCHANDISE SECTION
   ============================================================ */
.merch-card {
    background: #111;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.merch-card img {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    height: 300px;
    width: 100%;
    object-fit: cover;
    filter: contrast(1.2);
}

.merch-card h3 { font-size: 23px; }

.merch-card .merch-desc {
    opacity: 1;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.merch-card .merch-price {
    color: #7a0029;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* ============================================================
   NEWSLETTER / INSIDER SIGNUP
   ============================================================ */
.newsletter-box {
    background: var(--bg-accent);
    border: 1px solid var(--primary);
    padding: 5rem 3rem;
    border-radius: var(--radius);
    text-align: center;
}

.newsletter-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-box p {
    font-size: 17px;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 1rem;
    border-radius: var(--radius);
    flex-grow: 1;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: #fff;
    font-size: 17px;
}

/* ============================================================
   GALLERY SHOWCASE
   ============================================================ */
.gallery-col { display: grid; gap: 1.5rem; }

.gallery-img-tall {
    height: 400px;
    overflow: hidden;
}

.gallery-img-short {
    height: 250px;
    overflow: hidden;
}

.gallery-img-tall img,
.gallery-img-short img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) contrast(1.2);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-img-tall:hover img,
.gallery-img-short:hover img { transform: scale(1.05); }

/* ============================================================
   COMEDIANS ROSTER CARDS
   ============================================================ */
.roster-card {
    padding: 0;
    overflow: hidden;
    border: none;
    background: #111;
    border-radius: var(--radius);
}

.roster-card-img {
    height: 350px;
    position: relative;
}

.roster-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.roster-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2rem 1.5rem 1.5rem;
}

.roster-card-overlay h3 {
    font-size: 23px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.roster-card-overlay p {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   EVENTS LIST CARDS
   ============================================================ */
.event-list-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    border-radius: var(--radius);
}

.event-list-card.featured {
    border-left: 5px solid var(--primary);
}

.event-list-card.secondary {
    border-left: 5px solid rgba(255,255,255,0.1);
}

.event-list-info { flex: 1; min-width: 300px; }

.event-list-info .event-date {
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.event-list-card.featured .event-date { color: var(--primary); }
.event-list-card.secondary .event-date { color: rgba(255,255,255,0.5); }

.event-list-info h3 {
    font-size: 23px;
    margin-bottom: 0.5rem;
    font-family: 'Vidaloka', serif;
}

.event-list-info p { opacity: 1; font-size: 17px; }

.event-list-action {
    text-align: right;
    min-width: 150px;
}

.event-list-action .event-price {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

/* ============================================================
   MEMBERSHIP TIERS
   ============================================================ */
.tier-card {
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.tier-card.featured-tier {
    border-color: var(--primary);
    background: var(--bg-accent);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(122,0,41,0.2);
}

.tier-card h3 { font-size: 23px; margin-bottom: 0.5rem; }

.tier-price {
    font-size: 3rem;
    font-weight: bold;
    color: #7a0029;
    margin: 1.5rem 0;
}

.tier-price span { font-size: 1rem; opacity: 0.6; }

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.tier-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 17px;
    opacity: 1;
}

.tier-features li::before {
    content: '✓ ';
    color: #7a0029;
    font-weight: bold;
}

/* ============================================================
   REVIEW / TESTIMONIAL CARDS
   ============================================================ */
.review-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 3rem;
    text-align: left;
    position: relative;
    border-radius: var(--radius);
}

.review-card .review-quote-icon {
    font-size: 4rem;
    position: absolute;
    top: -10px;
    right: 20px;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.review-card .rating-stars {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.review-card p {
    font-size: 17px;
    margin-bottom: 2rem;
    font-style: italic;
}

.review-card strong {
    color: #7a0029;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   FOOTER — NEW CINEMATIC STYLE
   ============================================================ */
footer {
    background: linear-gradient(to top, #050505, #111);
    /* padding: 3rem 0 2rem; */
    border-top: 1px solid rgba(122, 0, 41, 0.2);
    margin-top: 2em;
}

/* Modern Footer Grid Structure */
.footer-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    /* margin-bottom: 3rem; */
}

.footer-item {
    padding: 0;
}

.footer-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-item-text {
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    opacity: 1;
    color: #ffffff;
}

.footer-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-item-list li {
    margin-bottom: 0.8rem;
}

.footer-item-list a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-item-list a:hover {
    color: #7a0029;
}

/* Featured Shows Grid */
.featured-shows-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.featured-show-card {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.featured-show-card:hover {
    transform: translateY(-5px);
}

.featured-show-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

.featured-show-text {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 12px;
    padding: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 1;
    color: #ffffff;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #7a0029;
}

/* ============================================================
   NEW MODERN FOOTER DESIGN
   ============================================================ */

.new-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(153, 0, 51, 0.3);
    position: relative;
    width: 100%;
    margin: 0;
    padding: 1em 3em 1em 3em; /* Explicit footer padding */
}

.new-footer .container {
    padding: 0; /* Reset container padding inside footer */
}

.new-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.new-footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
    min-height: auto;
}

.new-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    /* margin-bottom: 3rem; */
}

.new-footer-brand {
    padding-right: 2rem;
}

.new-footer-brand .logo {
    font-size: 2.2rem;
    /* letter-spacing: 6px; */
    color: var(--primary) !important;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 700;
}

.new-footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 2rem;
    max-width: 400px;
}

.new-footer-brand .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.new-footer-brand .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #7a0029;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.new-footer-brand .social-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.new-footer-brand .social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    transform: translateY(-2px);
}

.new-footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
}

.new-footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.new-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-footer-section ul li {
    margin-bottom: 0.8rem;
}

.new-footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.new-footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.new-footer-section ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.new-footer-section ul li a:hover::before {
    width: 100%;
}

.new-footer-newsletter {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1rem;
}

.new-footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.new-footer-newsletter .newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.new-footer-newsletter input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
}

.new-footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.new-footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.new-footer-newsletter button {
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-footer-newsletter button:hover {
    background: #b3003d;
    transform: translateY(-1px);
}

[data-theme="dark"] .new-footer-newsletter button {
    color: #fff;
}

[data-theme="light"] .new-footer-newsletter button {
    background: var(--primary);
    color: white;
}

/* Utility class for full-width buttons on mobile */
.btn-block {
    width: 100%;
}

.new-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
    margin: 0;
    text-align: center;
}

.new-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.new-footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.new-footer-bottom-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.new-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.new-footer-bottom-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .new-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .new-footer-brand {
        text-align: center;
        padding-right: 0;
    }

    .new-footer-brand .logo {
        font-size: 1.8rem;
    }

    .new-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .new-footer-bottom-links {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .new-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .new-footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .new-footer-section {
        text-align: center;
    }

    .new-footer-brand .social-links {
        justify-content: center;
    }

    .new-footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .new-footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .new-footer-brand .logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .new-footer-section h4 {
        font-size: 1rem;
    }

    .new-footer-section ul li a {
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
}

.footer-nav-col h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    line-height: 2.2;
}

.footer-nav-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s;
}

.footer-nav-col ul li a:hover {
    color: #7a0029;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    border-color: #7a0029;
    color: #7a0029;
}

.footer-copy {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copy a:hover {
    color: #7a0029;
}

/* ============================================================
   SEAT MAP (events page)
   ============================================================ */
.seat-map-container {
    background: #000;
    padding: 4rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.seat-legend {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.seat-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 17px;
}

.seat-icon {
    width: 25px;
    height: 20px;
    border-radius: 5px;
}

.seat-icon.available { background: rgba(255,255,255,0.1); }
.seat-icon.selected { background: var(--primary); }
.seat-icon.occupied { background: #333; }

.seat-screen {
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(212,175,55,0.2), transparent);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    margin-bottom: 3rem;
    transform: rotateX(-45deg);
}

.seat-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.seat-btn {
    width: 30px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.seat-btn.available { background: rgba(255,255,255,0.1); }
.seat-btn.selected { background: var(--primary); }
.seat-btn.occupied { background: #333; cursor: not-allowed; }

.seat-total {
    margin-top: 3rem;
    text-align: center;
}

.seat-total p { font-size: 17px; }
.seat-total .seat-count { color: var(--primary); }

/* ============================================================
   INDEX2 CINEMATIC HERO
   ============================================================ */
.cinema-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinema-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1543007630-9710e4a00a20?q=80&w=1600') center/cover;
    filter: grayscale(100%) contrast(1.2);
}

.cinema-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(122,0,41,0.2) 100%);
}

.cinema-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.cinema-hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.cinema-hero-title {
    font-size: 4.5rem;
    font-family: 'Vidaloka', serif;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.cinema-hero-desc {
    font-size: 17px;
    opacity: 1;
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.8;
    color: #fff;
}

.cinema-hero-video {
    height: 450px;
    position: relative;
}

.cinema-hero-video img,
.cinema-hero-video div:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinema-hero-line {
    position: absolute;
    top: -20px;
    left: 0;
    width: 2px;
    height: 110%;
    background: var(--primary);
    opacity: 1;
}

/* ============================================================
   APOTHECARY BAR — index2
   ============================================================ */
.apothecary-card {
    height: 350px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.apothecary-card-inner {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.apothecary-card.featured { transform: scale(1.05); }

.apothecary-card.featured .apothecary-card-inner {
    background: linear-gradient(transparent, rgba(122,0,41,0.7));
}

.apothecary-card:not(.featured) .apothecary-card-inner {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.apothecary-card.featured h3 {
    color: #000;
    font-weight: bold;
    font-size: 23px;
}

.apothecary-card:not(.featured) h3 { color: #fff; }

/* ============================================================
   RESPONSIVE GLOBAL TWEAKS
   ============================================================ */
@media (max-width: 768px) {
    .bento-membership,
    .bento-gallery,
    .bento-testimonial,
    .bento-cta {
        grid-column: span 12;
        grid-row: span 1;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr;
    }

    .cinema-hero-title { font-size: 2.5rem; }
    .newsletter-form { flex-direction: column; }
    .event-list-card { flex-direction: column; }
    .event-list-action { text-align: left; }
}

/* ============================================================
   MODERN HERO & CINEMATIC COMPONENTS
   ============================================================ */
.modern-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-secondary) 50%, var(--bg-accent) 100%);
}

.experience-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.performance-card {
    height: 400px;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.performance-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff; /* Always white against the dark overlay */
}

.performance-card h3 {
    font-size: 2rem;
    color: #ffffff !important; /* Force white on dark card */
    margin-bottom: 1rem;
}

.performance-card p {
    color: rgba(255, 255, 255, 0.8) !important; /* Force light gray on dark card */
    margin-bottom: 2rem;
}

/* ============================================================
   LOUNGE CARDS
   ============================================================ */
.lounge-card {
    background: var(--bg-secondary);
    padding: 4rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.lounge-card:hover {
    border-color: var(--primary);
    background: var(--bg-accent);
    transform: translateY(-5px);
}

.lounge-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.lounge-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--body-color);
}

.lounge-card-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

/* ============================================================
   STATS / LAUGHTER LEDGER
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-item {
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-accent);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stat-number {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Vidaloka', serif;
    display: block;
    line-height: 1;
    font-weight: 800;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.8em;
}

/* ============================================================
   MASTERCLASS SERIES — NEW RESPONSIVE DESIGN
   ============================================================ */
.masterclass-section {
    background: var(--bg-main);
    position: relative;
}

.masterclass-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
}

.masterclass-media-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 600px;
    border: 1px solid var(--border-color);
}

.masterclass-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.masterclass-media-container:hover img {
    transform: scale(1.05);
}

.masterclass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

.masterclass-content {
    background: var(--bg-secondary);
    padding: 1.5em;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.masterclass-content:hover {
    border-color: var(--primary);
    background: var(--bg-accent);
}

.masterclass-content .section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.masterclass-description {
    font-size: 1.2rem;
    color: var(--body-color);
    margin-bottom: 3rem;
    line-height: 1.8em;
    opacity: 1;
}

.masterclass-list {
    list-style: none;
    margin-bottom: 4rem;
    padding: 0;
}

.masterclass-list li {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.masterclass-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
    flex-shrink: 0;
}

.masterclass-text {
    font-weight: 600;
    color: var(--body-color);
    line-height: 1.8em;
}

/* ============================================================
   MASTERCLASS RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .masterclass-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .masterclass-media-container {
        height: 500px;
        order: 2;
    }

    .masterclass-content {
        order: 1;
        padding: 2.5rem 2rem;
    }

    .masterclass-content .section-title {
        font-size: 3rem;
    }

    .masterclass-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .masterclass-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .masterclass-media-container {
        height: 400px;
    }

    .masterclass-content {
        padding: 2rem 1.5rem;
    }

    .masterclass-content .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .masterclass-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .masterclass-list li {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .masterclass-line {
        width: 25px;
        height: 2px;
    }

    .masterclass-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .masterclass-section {
        padding: 2rem 1rem;
    }

    .masterclass-media-container {
        height: 300px;
    }

    .masterclass-content {
        padding: 1.5rem 1rem;
    }

    .masterclass-content .section-title {
        font-size: 1.8rem;
    }

    .masterclass-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .masterclass-list li {
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .masterclass-line {
        width: 100%;
        height: 1px;
    }

    .masterclass-text {
        font-size: 14px;
    }

    .btn {
        width: 100%;
    }
}

/* ============================================================
   MERCHANDISE SECTION — NEW RESPONSIVE DESIGN
   ============================================================ */
.merchandise-section {
    background: var(--bg-main);
    position: relative;
    text-align: center;
}

.merchandise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.merchandise-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    padding: 0;
}

.merchandise-card:hover {
    border-color: var(--primary);
    background: var(--bg-accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.merchandise-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #000;
}

.merchandise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.merchandise-card:hover .merchandise-image img {
    transform: scale(1.08);
}

.merchandise-title {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 1.5rem 1.5rem 0.75rem;
    font-weight: 600;
    line-height: 1.8em;
}

.merchandise-desc {
    font-size: 0.95rem;
    color: var(--body-color);
    margin: 0.75rem 1.5rem;
    line-height: 1.8em;
    opacity: 1;
}

.merchandise-price {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1.5rem 1.5rem 1.5rem;
    letter-spacing: 1px;
}

/* ============================================================
   MERCHANDISE RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .merchandise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .merchandise-image {
        height: 300px;
    }

    .merchandise-title {
        font-size: 1.3rem;
        margin: 1.25rem 1.25rem 0.5rem;
    }

    .merchandise-desc {
        margin: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .merchandise-price {
        margin: 1.25rem 1.25rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .merchandise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .merchandise-image {
        height: 350px;
    }

    .merchandise-title {
        font-size: 1.2rem;
        margin: 1rem 1rem 0.5rem;
    }

    .merchandise-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .merchandise-section {
        padding: 2rem 1rem;
    }

    .merchandise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .merchandise-image {
        height: 280px;
    }

    .merchandise-title {
        font-size: 1.1rem;
        margin: 0.75rem 0.75rem 0.5rem;
    }

    .merchandise-desc {
        font-size: 0.85rem;
        margin: 0.5rem 0.75rem;
    }

    .merchandise-price {
        font-size: 1.1rem;
        margin: 0.75rem 0.75rem 0.75rem;
    }
}

/* Cinematic Hero (index2) */
/* ============================================================
   INDEX2 HERO SECTION — REDESIGNED CINEMATIC STYLE
   ============================================================ */
.modern-hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #ffffff !important;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero background with split layout */
.modern-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1200 600%22><defs><linearGradient id=%22g1%22 x1=%220%22 y1=%220%22 x2=%22100%25%22 y2=%22100%25%22><stop offset=%220%25%22 style=%22stop-color:rgba(153,0,51,0.1)%22/><stop offset=%22100%25%22 style=%22stop-color:rgba(212,175,55,0.1)%22/></linearGradient></defs><rect width=%221200%22 height=%22600%22 fill=%22url(%23g1)%22/></svg>') no-repeat center/cover;
    opacity: 0.5;
    z-index: 1;
}

.modern-hero .container {
    width: 100%;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.modern-hero .grid {
    grid-template-columns: 1.3fr 1fr !important;
    align-items: center !important;
    gap: 3rem !important;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-tag {
    display: inline-block;
    color: #d4af37;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.modern-hero h1 {
    font-size: 5rem;
    font-family: 'Vidaloka', serif;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff !important;
    letter-spacing: -1px;
}

.modern-hero p {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
}

.hero-features .dot {
    width: 10px;
    height: 10px;
    background: #d4af37;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-visual {
    position: relative;
    z-index: 3;
}

.hero-media-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 550px;
    border: 3px solid #d4af37;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), inset 0 0 40px rgba(212, 175, 55, 0.15);
    background: #000;
}

.hero-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 1 !important;
}

.hero-media-container:hover img {
    transform: scale(1.08);
}

.hero-media-container .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(153, 0, 51, 0.2));
    pointer-events: none;
}

.hero-media-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #000;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-media-container .play-button:hover {
    background: rgba(212, 175, 55, 1);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

.floating-stat {
    position: absolute;
    background: #0a0a0a;
    border: 2px solid #d4af37;
    padding: 1.2rem;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    text-align: center;
    font-weight: bold;
    z-index: 5;
}

.floating-stat .value {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.floating-stat .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    animation: bounce 2.5s infinite;
}

.scroll-indicator .line {
    width: 2px;
    height: 35px;
    background: linear-gradient(to bottom, #d4af37, transparent);
}

.scroll-indicator .text {
    color: #d4af37;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

.cinema-experience {
    width: 100%;
    background: #ffffff;
    padding: 3em 3em 0 3em;
    box-sizing: border-box;
}

.cinema-experience .container {
    width: 100%;
    padding: 0;
}

.cinema-experience h2,
.cinema-experience h4,
.cinema-experience p {
    color: #0a0a0a !important;
}

.cinema-experience .eyebrow {
    color: #990033;
}


.modern-hero h1 {
    font-size: 55px;
    font-family: 'Vidaloka', serif;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff !important;
    /* text-shadow: 0 2px 10px rgba(0,0,0,0.6); */
}

.modern-hero p {
    font-size: 1.3rem;
    opacity: 1;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #ffffff !important;
}

.hero-tag {
    color: #d4af37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 1;
    color: #000000 !important;
    /* text-shadow: 0 1px 5px rgba(0,0,0,0.5); */
}

.hero-features .dot {
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
}

.hero-media-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 500px;
    border: 2px solid rgba(212,175,55,0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), inset 0 0 30px rgba(212,175,55,0.1);
}

.hero-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 1 !important;
}

.hero-media-container .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

.hero-media-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212,175,55,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-media-container .play-button:hover {
    background: rgba(212,175,55,1);
    transform: translate(-50%, -50%) scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-indicator .line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #d4af37, transparent);
}

.scroll-indicator .text {
    color: #d4af37;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Common Cinematic Section Overrides (Force white text in Light Mode) */
[data-theme="light"] .modern-hero,
[data-theme="light"] .bg-black-media,
[data-theme="light"] .cinema-performances,
[data-theme="light"] .cinema-membership {
    background: #ffffff !important;
    color: #000000 !important;
}

[data-theme="light"] .cinema-experience {
    background: #ffffff !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .cinema-gallery {
    background: #ffffff !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .cinema-masterclass {
    background: #f8f8f8 !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .cinema-apothecary {
    background: #ffffff !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .cinema-membership {
    background: #ffffff !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .cinema-reviews {
    background: #f8f8f8 !important;

    color: #0a0a0a !important;
}


[data-theme="light"] .modern-hero p,
[data-theme="light"] .modern-hero .hero-tag,
[data-theme="light"] .bg-black-media p,
[data-theme="light"] .cinema-gallery p,
[data-theme="light"] .cinema-gallery .eyebrow,
[data-theme="light"] .cinema-experience p,
[data-theme="light"] .cinema-experience .eyebrow,
[data-theme="light"] .cinema-masterclass p,
[data-theme="light"] .cinema-masterclass .eyebrow,
[data-theme="light"] .cinema-apothecary p,
[data-theme="light"] .cinema-apothecary .eyebrow,
[data-theme="light"] .cinema-membership p,
[data-theme="light"] .cinema-reviews p,
[data-theme="light"] .cinema-reviews .eyebrow,
[data-theme="light"] .cinema-performances p,
[data-theme="light"] .cinema-performances .eyebrow {
    color: #000000 !important;
}



[data-theme="light"] .modern-hero h1,
[data-theme="light"] .bg-black-media h2,
[data-theme="light"] .cinema-gallery h2,
[data-theme="light"] .cinema-experience h2,
[data-theme="light"] .cinema-masterclass h2,
[data-theme="light"] .cinema-apothecary h2,
[data-theme="light"] .cinema-membership h2,
[data-theme="light"] .cinema-reviews h2,
[data-theme="light"] .cinema-performances h2,
[data-theme="light"] .cinema-gallery .eyebrow,
[data-theme="light"] .cinema-experience .eyebrow,
[data-theme="light"] .cinema-masterclass .eyebrow,
[data-theme="light"] .cinema-apothecary .eyebrow,
[data-theme="light"] .cinema-reviews .eyebrow {
    color: #990033 !important;
}

[data-theme="light"] .experience-card {
    background: #f5f5f5 !important;
    border-color: #ddd !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .experience-card h3,
[data-theme="light"] .experience-card p {
    color: #0a0a0a !important;
}

[data-theme="light"] .review-card {
    background: #ffffff !important;
    border-color: #ddd !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .review-card p,
[data-theme="light"] .review-card strong,
[data-theme="light"] .review-card small {
    color: #0a0a0a !important;
}

[data-theme="light"] .contact-cta {
    background: #ffffff !important;
    border-color: #ddd !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .contact-cta h2,
[data-theme="light"] .contact-cta p {
    color: #0a0a0a !important;
}

[data-theme="light"] .cinema-membership .eyebrow {
    color: #990033 !important;
}

[data-theme="light"] .cinema-membership > .container > .reveal {
    background: #f0f0f0 !important;
    border-color: rgba(153, 0, 51, 0.3) !important;
}

[data-theme="light"] .feature-item {
    background: #ffffff !important;
    border-color: #ddd !important;
    color: #0a0a0a !important;
}

[data-theme="light"] .feature-item h4,
[data-theme="light"] .feature-item p {
    color: #0a0a0a !important;
}

[data-theme="dark"] .cinema-masterclass {
    background: #0a0a0a;
}

[data-theme="dark"] .cinema-masterclass h2,
[data-theme="dark"] .cinema-masterclass h4,
[data-theme="dark"] .cinema-masterclass p {
    color: #ffffff !important;
}

[data-theme="dark"] .cinema-masterclass .eyebrow {
    color: #d4af37;
}

[data-theme="dark"] .masterclass-image img {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .cinema-apothecary {
    background: #0a0a0a;
}

[data-theme="dark"] .cinema-apothecary h2,
[data-theme="dark"] .cinema-apothecary h4,
[data-theme="dark"] .cinema-apothecary p {
    color: #ffffff !important;
}

[data-theme="dark"] .cinema-apothecary .eyebrow {
    color: #d4af37;
}

[data-theme="dark"] .apothecary-menu .menu-item {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .apothecary-menu .menu-item h4 {
    color: #d4af37 !important;
}

[data-theme="dark"] .apothecary-menu .menu-item p {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark"] .cinema-reviews {
    background: #0a0a0a;
}

[data-theme="dark"] .cinema-reviews h2,
[data-theme="dark"] .cinema-reviews h4,
[data-theme="dark"] .cinema-reviews p {
    color: #ffffff !important;
}

[data-theme="dark"] .cinema-reviews .eyebrow {
    color: #d4af37;
}

[data-theme="dark"] .review-card {
    background: rgba(20, 20, 20, 0.8) !important;
    border-color: rgba(153, 0, 51, 0.3) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .review-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .review-card strong {
    color: #d4af37 !important;
}

[data-theme="dark"] .review-card small {
    color: rgba(255, 255, 255, 0.5) !important;
}

[data-theme="dark"] .review-card .rating-stars {
    color: #d4af37 !important;
}

[data-theme="dark"] .contact-cta {
    background: rgba(20, 20, 20, 0.8) !important;
    border-color: rgba(153, 0, 51, 0.3) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .contact-cta h2,
[data-theme="dark"] .contact-cta p {
    color: #ffffff !important;
}

[data-theme="dark"] .cinema-membership {
    background: #000000;
}

[data-theme="dark"] .cinema-membership h2,
[data-theme="dark"] .cinema-membership h4,
[data-theme="dark"] .cinema-membership p {
    color: #ffffff !important;
}

[data-theme="dark"] .cinema-membership .eyebrow {
    color: #d4af37 !important;
}

[data-theme="dark"] .feature-item {
    background: rgba(30, 30, 30, 0.6) !important;
    border-color: rgba(153, 0, 51, 0.2) !important;
}

[data-theme="dark"] .feature-item h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .feature-item p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Specialized Components for index2 */
.cinema-performances {
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #050505 100%);
    padding: 3em 3em 0 3em;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.cinema-performances::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    z-index: 1;
}

.cinema-performances .container {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 2;
}

.cinema-performances .text-center {
    margin-bottom: 4rem;
}

.cinema-performances .eyebrow {
    color: #d4af37;
    font-weight: 700;
}

.cinema-performances .section-title {
    color: #ffffff;
}

.performance-card {
    height: 480px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #000;
}

.performance-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.performance-card:hover {
    border-color: #d4af37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3), inset 0 0 40px rgba(212, 175, 55, 0.05);
    transform: translateY(-12px);
}

.performance-card:hover img {
    transform: scale(1.1) rotate(1deg);
}

.performance-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: absolute;
    inset: 0;
}

.performance-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff !important;
    z-index: 2;
}

.performance-card-overlay > div:first-child {
    color: #d4af37;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.performance-card h3 {
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
    color: #ffffff !important;
    font-family: 'Vidaloka', serif;
}

.performance-card p {
    opacity: 1;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    font-size: 0.95rem;
}


.experience-card {
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-left: 5px solid #990033;
    padding: 3rem;
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #990033, #d4af37, #990033);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a !important;
}

.experience-card p {
    color: #333333 !important;
    line-height: 1.6;
}

.experience-card:hover {
    border-color: #990033;
    border-left-width: 5px;
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(153, 0, 51, 0.15), inset 0 0 30px rgba(153, 0, 51, 0.05);
}

.experience-card:hover::before {
    opacity: 1;
}


.cinema-gallery {
    width: 100%;
    background: #ffffff;
    padding: 3em 3em;
    box-sizing: border-box;
}

.cinema-gallery .container {
    width: 100%;
    padding: 0;
}

.cinema-gallery h2,
.cinema-gallery h4,
.cinema-gallery p {
    color: #0a0a0a !important;
}

.cinema-gallery .eyebrow {
    color: #990033;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================================
   CINEMA MASTERCLASS SECTION
   ============================================================ */
.cinema-masterclass {
    width: 100%;
    background: #f8f8f8;
    padding: 3em 3em 0 3em;
    box-sizing: border-box;
}

.cinema-masterclass .container {
    width: 100%;
    padding: 0;
}

.cinema-masterclass h2,
.cinema-masterclass h4,
.cinema-masterclass p {
    color: #0a0a0a !important;
}

.cinema-masterclass .eyebrow {
    color: #990033;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.masterclass-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.masterclass-image img {
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ============================================================
   CINEMA APOTHECARY SECTION
   ============================================================ */
.cinema-apothecary {
    width: 100%;
    background: #ffffff;
    padding: 3em 3em 0 3em;
    box-sizing: border-box;
}

.cinema-apothecary .container {
    width: 100%;
    padding: 0;
}

.cinema-apothecary h2,
.cinema-apothecary h4,
.cinema-apothecary p {
    color: #0a0a0a !important;
}

.cinema-apothecary .eyebrow {
    color: #990033;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.apothecary-menu .menu-item {
    color: #0a0a0a !important;
}

.apothecary-menu .menu-item h4 {
    color: #990033 !important;
}

.apothecary-menu .menu-item p {
    color: #666666 !important;
}

/* ============================================================
   CINEMA MEMBERSHIP SECTION
   ============================================================ */
.cinema-membership {
    width: 100%;
    background: #0a0a0a;
    padding: 3em 3em 0 3em;
    box-sizing: border-box;
}

.cinema-membership .container {
    width: 100%;
    padding: 0;
}

.cinema-membership h2,
.cinema-membership h4,
.cinema-membership p {
    color: #ffffff !important;
}

.cinema-membership .eyebrow {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.cinema-membership > .container > .reveal {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(153, 0, 51, 0.3) !important;
}

.membership-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background: rgba(30, 30, 30, 0.5);
    padding: 2rem;
    border: 1px solid rgba(153, 0, 51, 0.2);
}

.feature-item h4 {
    color: #ffffff !important;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ============================================================
   CINEMA REVIEWS SECTION
   ============================================================ */
.cinema-reviews {
    width: 100%;
    background: #f8f8f8;
    padding: 3em 3em 3em 3em;
    box-sizing: border-box;
}

.cinema-reviews .container {
    width: 100%;
    padding: 0;
}

.cinema-reviews h2,
.cinema-reviews h4,
.cinema-reviews p {
    color: #0a0a0a !important;
}

.cinema-reviews .eyebrow {
    color: #990033;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.review-card {
    background: #ffffff !important;
    border: 2px solid #ddd !important;
    color: #0a0a0a !important;
}

.review-card p {
    color: #333333 !important;
}

.review-card strong {
    color: #990033 !important;
}

.review-card small {
    color: #999999 !important;
}

.review-card .rating-stars {
    color: #990033 !important;
}

.contact-cta {
    background: #ffffff !important;
    border: 2px solid #ddd !important;
    color: #0a0a0a !important;
}

.contact-cta h2 {
    color: #0a0a0a !important;
}

.contact-cta p {
    color: #666666 !important;
}

/* Gallery & Split Sections */
.gallery-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #000;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(153, 0, 51, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
    pointer-events: none;
}

.gallery-item:hover {
    border-color: #990033;
    box-shadow: 0 15px 40px rgba(153, 0, 51, 0.25), inset 0 0 30px rgba(153, 0, 51, 0.1);
    transform: translateY(-8px);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.12) rotate(2deg);
}

.gallery-item.wide { 
    grid-column: span 2; 
}

.gallery-item.tall { 
    grid-row: span 2; 
}

.masterclass-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
}

.masterclass-image {
    position: relative;
    height: 500px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.masterclass-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media-container:hover img {
    transform: scale(1.02);
}

.play-button {
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(212,175,55,0.8);
}

.floating-stat {
    position: absolute;
    background: var(--bg-main);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    font-weight: bold;
}

.floating-stat div:first-child {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.floating-stat div:last-child {
    font-size: 0.8rem;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator div:first-child {
    background: var(--primary);
    margin: 0 auto 1rem;
}

.scroll-indicator div:last-child {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Responsive adjustments for modern hero */
@media (max-width: 1024px) {
    .modern-hero .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .modern-hero h1 {
        font-size: 3.5rem;
    }

    .hero-media-container {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-stat {
        position: static;
        display: inline-block;
        margin: 1rem;
    }

    .hero-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 2rem 1.5em;
    }

    .modern-hero .container {
        padding: 0 1rem;
    }

    .modern-hero h1 {
        font-size: 2.5rem;
    }

    .modern-hero p {
        font-size: 1rem;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .cinema-experience,
    .cinema-gallery,
    .cinema-performances,
    .cinema-masterclass,
    .cinema-apothecary,
    .cinema-membership,
    .cinema-reviews {
        padding: 2.5rem 1.5em;
    }

    .masterclass-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .membership-features {
        grid-template-columns: 1fr;
    }

    .performance-card {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .modern-hero {
        min-height: auto;
        padding: 3rem 1em;
    }

    .modern-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-media-container {
        height: 250px;
    }

    .hero-media-container .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .gallery-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-features {
        gap: 0.8rem;
    }

    .hero-features div {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.5rem !important;
        min-width: auto;
        font-size: 14px !important;
    }

    .cinema-masterclass h2,
    .cinema-apothecary h2,
    .cinema-reviews h2 {
        font-size: 2rem;
    }

    .performance-card {
        height: 250px;
    }

    .performance-card h3 {
        font-size: 1.5rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}


/* ============================================================
   BUTTON STYLING FOR ALL SECTIONS
   ============================================================ */
.cinema-masterclass .btn,
.cinema-apothecary .btn,
.cinema-reviews .btn {
    border-color: #990033 !important;
    color: #990033 !important;
    transition: all 0.3s ease;
}

.cinema-masterclass .btn:hover,
.cinema-apothecary .btn:hover,
.cinema-reviews .btn:hover {
    background: #990033 !important;
    color: #ffffff !important;
}

.cinema-masterclass .btn-primary,
.cinema-apothecary .btn-primary,
.cinema-reviews .btn-primary {
    background: #990033 !important;
    color: #ffffff !important;
    border-color: #990033 !important;
}

.cinema-masterclass .btn-primary:hover,
.cinema-apothecary .btn-primary:hover,
.cinema-reviews .btn-primary:hover {
    background: #7a0028 !important;
    border-color: #7a0028 !important;
}

/* ============================================================
   SECTION HEADER MARGIN HELPERS
   ============================================================ */
.mb-5 { margin-bottom: 5rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ============================================================
   COMEDIAN FEATURE (SPOTLIGHT) — index.html
   ============================================================ */
.comedian-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.comedian-spotlight-img {
    height: 500px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.comedian-spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.comedian-spotlight-img:hover img { transform: scale(1.05); }

.comedian-spotlight-text .eyebrow { color: var(--subheading-color); }

.comedian-spotlight-text p {
    font-size: 17px;
    margin-bottom: 2rem;
}

/* ============================================================
   NEWSLETTER H2 / P
   ============================================================ */
.newsletter-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ============================================================
   PAGE HERO VARIANTS
   ============================================================ */
.gallery-hero { background-image: url('assets/images/gallery-bg.jpg'); }
.events-hero  { background-image: url('assets/images/events-bg.jpg'); }
.comedians-hero { background-image: url('assets/images/comedians-bg.jpg'); }
.membership-hero { background-image: url('assets/images/membership-bg.jpg'); }

@media (max-width: 768px) {
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item { 
        border: 1px solid var(--border-color);
        padding: 2.5rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .comedian-spotlight { grid-template-columns: 1fr; gap: 2rem; }
    .comedian-spotlight-img { height: 300px; }
}

@media (max-width: 480px) {
    .stats-grid { 
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item { 
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* ============================================================
   INDEX2 HERO (MOVED FROM index2.html)
   ============================================================ */
.cine-hero {
    position: relative;
    overflow: hidden;
    min-height: 95vh;
    padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 3rem);
    display: grid;
    align-items: center;
    background:
        radial-gradient(1200px 600px at 10% 15%, rgba(255, 255, 255, 0.06), transparent 60%),
        radial-gradient(900px 520px at 85% 25%, rgba(255, 255, 255, 0.03), transparent 55%),
        radial-gradient(900px 520px at 70% 95%, rgba(255, 255, 255, 0.03), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.98));
}

.cine-hero .container {
    padding: 0 1.5rem;
}

.cine-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.cine-hero__grid > .reveal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
}

.cine-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 1;
    pointer-events: none;
    mask-image: radial-gradient(70% 60% at 30% 35%, #000 35%, transparent 70%);
}

.cine-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.cine-hero__badge .pip {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.cine-hero h1 {
    font-size: 45px;
    line-height: 1.05;
    margin: 1.1rem 0 1.2rem;
    letter-spacing: -0.02em;
}

.cine-hero__accent {
    color: var(--primary);
}

.cine-hero__lead {
    font-size: 1.15rem;
    line-height: 1.85;
    opacity: 1;
    max-width: 42rem;
    margin: 0 0 1.8rem;
}

.cine-hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 2.2rem;
}

.cine-hero__cta .btn {
    padding: 1.1rem 2.6rem;
}

.cine-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 46rem;
}

.cine-hero__meta-item {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.35);
    padding: 1rem 1.05rem;
}

.cine-hero__meta-item .k {
    display: block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.cine-hero__meta-item .v {
    display: block;
    opacity: 1;
    font-size: 0.95rem;
    line-height: 1.55;
}

.cine-hero__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cine-hero__card {
    position: relative;
    aspect-ratio: 16 / 10;
    width: 100%;
    max-width: 540px;
    max-height: 520px;
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.cine-hero__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.06);
    transform: scale(1.02);
}

.cine-hero__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.86)),
        radial-gradient(600px 420px at 65% 25%, rgba(255,255,255,0.12), transparent 60%);
    pointer-events: none;
}

.cine-hero__chiprow {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
    z-index: 2;
}

.cine-hero__chip {
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    opacity: 1;
}

.cine-hero__chip strong {
    color: var(--primary);
}

.cine-hero__play {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
    cursor: pointer;
    z-index: 2;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.cine-hero__play:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background-color: rgba(0, 0, 0, 0.9);
}

.cine-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    opacity: 0.75;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.cine-hero__scroll .bar {
    width: 44px;
    height: 1px;
    background: var(--primary);
}

@media (max-width: 980px) {
    .cine-hero {
        padding: clamp(3rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 2.5rem);
    }

    .cine-hero__grid {
        grid-template-columns: 1fr;
    }

    .cine-hero__card {
        aspect-ratio: 16 / 10;
        max-height: 420px;
    }

    .cine-hero__meta {
        grid-template-columns: 1fr;
    }

    .cine-hero__scroll {
        display: none;
    }
}

[data-theme="light"] .cine-hero {
    color: rgba(255, 255, 255, 0.92);
    background:
        radial-gradient(1200px 600px at 10% 15%, rgba(255, 255, 255, 0.06), transparent 60%),
        radial-gradient(900px 520px at 85% 25%, rgba(255, 255, 255, 0.03), transparent 55%),
        radial-gradient(900px 520px at 70% 95%, rgba(255, 255, 255, 0.03), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.99));
}

[data-theme="light"] .cine-hero :where(h1, p, span, div) {
    color: inherit;
}

[data-theme="light"] .cine-hero__accent {
    color: var(--primary);
}

/* ============================================================
   INDEX2 REVIEWS STICKY BACKGROUND
   ============================================================ */
.reviews-sticky-bg {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.74)),
        url('../images/13.jpg') center center / cover no-repeat fixed;
    overflow: hidden;
}
/* ============================================================
   EVENTS PAGE REDESIGN STYLES
   ============================================================ */

.events-redesign-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.events-redesign-hero .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to left, black 60%, transparent);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent);
}

.events-redesign-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 4rem;
}

.events-hero-content {
    max-width: 600px;
}

.events-hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.events-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Event Cards Upgrade */
.event-card-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.event-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.event-card-modern:hover .event-card-img {
    transform: scale(1.1);
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.3) 60%, transparent);
    z-index: 1;
}

.event-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.event-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
}

.event-card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.event-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .events-redesign-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .events-redesign-hero .hero-bg {
        width: 100%;
        opacity: 0.4;
        mask-image: linear-gradient(to bottom, black, transparent);
    }
    .events-hero-content {
        margin: 0 auto;
    }
}

.reviews-sticky-bg h2,
.reviews-sticky-bg h4,
.reviews-sticky-bg p,
.reviews-sticky-bg small {
    color: #ffffff !important;
}

.reviews-sticky-bg .review-card {
    background: rgba(255, 255, 255, 0.55) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 1024px) {
    .reviews-sticky-bg {
        background:
            linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.74)),
            url('../images/17.jpg') center center / cover no-repeat scroll;
    }
}

/* ============================================================
   NEW EVENTS SECTIONS STYLES
   ============================================================ */

.cuisine-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cuisine-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.cuisine-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.events-speakeasy .image-hover-zoom img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.events-speakeasy .image-hover-zoom:hover img {
    transform: scale(1.05);
}

.events-gifting .newsletter-box {
    position: relative;
    overflow: hidden;
}

.events-gifting .newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(153, 0, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

@media (max-width: 768px) {
    .events-cuisine .grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   MEMBERSHIP TIER REDESIGN
   ============================================================ */

.tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.tier-card .tier-title {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tier-card .tier-price {
    font-size: 3.5rem;
    font-family: 'Vidaloka', serif;
    margin-bottom: 2.5rem;
    color: #fff;
}

.tier-card .tier-price span {
    font-size: 1.2rem;
    color: #666;
}

.tier-card ul {
    list-style: none;
    margin-bottom: 3rem;
    width: 100%;
}

.tier-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-start;
}

.tier-card ul li span.icon {
    color: var(--primary);
    font-weight: bold;
}

/* Silver Tier (Most Popular) */
.tier-card.popular {
    background: rgba(153, 0, 51, 0.05);
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px rgba(153, 0, 51, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.tier-card.popular .badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: #fff;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.tier-card.popular .tier-title {
    color: var(--primary);
    font-weight: 700;
}

/* Golden Elite Tier */
.tier-card.elite {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.9) 100%);
    border: 1px solid #d4af37;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
}

.tier-card.elite::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: rotate(30deg);
    animation: elite-shimmer 6s infinite linear;
    pointer-events: none;
}

@keyframes elite-shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.tier-card.elite .tier-title {
    color: #d4af37;
}

.tier-card.elite .tier-price {
    color: #d4af37;
}

.tier-card.elite .btn-outline {
    border-color: #d4af37;
    color: #d4af37;
}

.tier-card.elite .btn-outline:hover {
    background: #d4af37;
    color: #000;
}

/* Light Mode Tier Redesign Overrides */
[data-theme="light"] .tier-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

[data-theme="light"] .tier-card:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(153, 0, 51, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .tier-card .tier-title {
    color: #444;
}

[data-theme="light"] .tier-card .tier-price {
    color: #1a1a1a;
}

[data-theme="light"] .tier-card .tier-price span {
    color: #999;
}

[data-theme="light"] .tier-card ul li {
    border-bottom-color: rgba(0, 0, 0, 0.05);
    color: #555;
    font-weight: 500;
}

[data-theme="light"] .tier-card.popular {
    background: rgba(153, 0, 51, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(153, 0, 51, 0.1);
}

[data-theme="light"] .tier-card.popular .tier-title {
    color: var(--primary);
}

[data-theme="light"] .tier-card.elite {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-color: #d4af37;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
}

[data-theme="light"] .tier-card.elite .tier-title,
[data-theme="light"] .tier-card.elite .tier-price {
    color: #a68b2d;
}

@media (max-width: 1024px) {
    .tier-card.popular {
        transform: scale(1);
        margin: 2rem 0;
    }
}

/* Custom responsive fixes for auth, coming-soon, and 404 pages */
.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bento-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4.5rem;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.newsletter-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.future-teaser-banner,
.error-page-hero,
.auth-page-hero {
    position: relative;
    color: #ffffff;
}

.future-teaser-banner h1,
.future-teaser-banner h2,
.future-teaser-banner p,
.future-teaser-banner .breadcrumbs,
.error-page-hero h1,
.error-page-hero h2,
.error-page-hero p,
.error-page-hero .btn,
.auth-page-hero h2,
.auth-page-hero h3,
.auth-page-hero p,
.auth-page-hero .eyebrow {
}

.future-teaser-banner::before,
.error-page-hero::before,
.auth-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.auth-page-hero > .container,
.future-teaser-banner > .container,
.error-page-hero > .container {
    position: relative;
    z-index: 2;
}

.auth-login-hero,
.auth-register-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.auth-page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.auth-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.auth-login-hero {
    background-image: url('assets/images/1.jpg');
    background-size: cover;
    background-position: center;
}

.auth-register-hero {
    background-image: url('assets/images/FC 1.jpg');
    background-size: cover;
    background-position: center;
}

.auth-page-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card,
.register-card,
.auth-card {
    width: 100%;
    max-width: 640px;
}

.auth-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(10, 10, 10, 0.92);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.85s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

[data-theme="light"] .auth-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.auth-card-side,
.auth-card-form {
    padding: 0.5rem;
}

.auth-card-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.auth-card-side .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d48;
}

.auth-card-side h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 0;
    line-height: 1.03;
    color: #fff;
}

[data-theme="light"] .auth-card-side h1 {
    color: #111;
}

.auth-card-side p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

[data-theme="light"] .auth-card-side p {
    color: #444;
}

.auth-highlights {
    display: grid;
    gap: 1rem;
}

.auth-highlights div {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .auth-highlights div {
    background: #f4f4f4;
    border-color: rgba(0, 0, 0, 0.06);
}

.auth-highlights strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

[data-theme="light"] .auth-highlights strong {
    color: #111;
}

.auth-highlights p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .auth-highlights p {
    color: #555;
}

.auth-card-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.auth-form-header .logo {
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 1rem;
}

[data-theme="light"] .auth-form-header .logo {
    color: var(--primary);
}

[data-theme="light"] .auth-form-header h2 {
    color: #111;
}

.auth-form-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .auth-form-header p {
    color: #555;
}

.auth-form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.auth-switch {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .auth-switch {
    color: #555;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 700;
}

.auth-card-form .btn-full {
    padding: 1.1rem 1.5rem;
}

@media (max-width: 1024px) {
    .auth-card {
        grid-template-columns: 1fr !important;
    }

    .auth-form-header .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .auth-form-header .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .auth-form-header .logo {
        font-size: 1.1rem;
    }
}

.auth-card-copy {
    margin-bottom: 2rem;
}

.auth-card-copy h1 {
    font-size: 2.6rem;
    margin: 1rem 0 1rem;
    line-height: 1.05;
    color: #fff;
}

.auth-card-copy p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .auth-form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.auth-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

[data-theme="light"] .auth-form input,
[data-theme="light"] .auth-form select {
    background: #f6f6f6;
    border-color: rgba(0, 0, 0, 0.12);
    color: #111;
}

[data-theme="light"] .auth-form label,
[data-theme="light"] .auth-card-copy h1,
[data-theme="light"] .auth-card-copy p,
[data-theme="light"] .auth-switch,
[data-theme="light"] .checkbox-label {
    color: #111;
}

[data-theme="light"] .auth-link,
[data-theme="light"] .auth-switch a {
    color: var(--primary);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.auth-link {
    color: var(--primary);
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

.auth-switch {
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.auth-switch a {
    color: var(--primary);
    font-weight: 700;
}

.auth-header {
    background: transparent;
    padding: 1.5rem 2rem;
}

.auth-header .logo {
    font-size: 1.9rem;
}

@media (max-width: 1024px) {
    .auth-grid,
    .coming-soon-grid,
    .error-links-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns,
    .newsletter-inline {
        width: 100%;
        justify-content: center;
    }

    section,
    .section-padding {
        padding: 2.5em 2em 0 2em;
    }
}

@media (max-width: 768px) {
    .auth-header {
        padding: 1.25rem 1.5rem;
    }

    .auth-header .logo {
        font-size: 1.6rem;
    }

    .auth-page-hero,
    .future-teaser-banner,
    .error-page-hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .future-teaser-banner h1,
    .error-page-hero h1 {
        font-size: 3rem;
    }

    .future-teaser-banner h2,
    .error-page-hero h2,
    .auth-page-hero .section-title {
        font-size: 2rem;
    }

    .future-teaser-banner p,
    .error-page-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-header {
        padding: 1rem 1rem;
    }

    .auth-grid {
        gap: 2rem;
    }

    .auth-page-hero .section-title,
    .error-page-hero .section-title,
    .future-teaser-banner .section-title {
        font-size: 2rem;
    }

    .future-teaser-banner h1,
    .error-page-hero h1 {
        font-size: 2.4rem;
    }

    .future-teaser-banner p,
    .error-page-hero p {
        font-size: 0.95rem;
    }

    .newsletter-inline input {
        width: 100%;
        max-width: none;
    }

    .newsletter-inline button {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 1.4rem;
    }

    .btn {
        min-width: auto;
        width: 100%;
    }

    section,
    .section-padding {
        padding: 1.5em 1em 0 1em;
    }
}

@media (max-width: 1024px) {
    .navbar .container,
    .container,
    section,
    .section-padding,
    .new-footer .container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .about-banner-legacy .banner-content,
    .about-legacy-history,
    .about-founder-story,
    .about-philosophy-of-wit,
    .about-milestone-timeline,
    .about-charity-events,
    .about-awards-recognition {
        padding-left: 0;
        padding-right: 0;
    }

    .about-banner-legacy .banner-content {
        max-width: 920px;
        margin: 0 auto;
        padding: 4rem 0 3rem;
    }

    .about-legacy-history .grid,
    .about-founder-story .grid,
    .about-milestone-timeline .grid,
    .about-philosophy-of-wit .grid,
    .about-awards-recognition .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .about-legacy-history img,
    .about-founder-story img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about-charity-events .media-container {
        min-height: 260px;
        padding: 2rem;
    }

    .about-awards-recognition .grid > div {
        border-right: none !important;
        padding-right: 0;
    }

    .about-page .about-legacy-history,
    .about-page .about-founder-story,
    .about-page .about-philosophy-of-wit,
    .about-page .about-milestone-timeline,
    .about-page .about-charity-events,
    .about-page .about-awards-recognition {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-page .about-banner-legacy {
        min-height: 60vh !important;
    }

    .about-page .about-banner-legacy .banner-content {
        margin-top: 0;
        padding: 4rem 0 2rem;
    }
}

/* Global responsive helpers and smooth animations */
html {
    scroll-behavior: smooth;
}

* {
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.btn,
.button,
input,
select,
textarea,
.navbar,
.auth-card,
.bento-card,
.review-card,
.new-footer,
.hero-btns,
.banner-content,
.error-page-hero,
.future-teaser-banner {
    transition: var(--transition);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s ease forwards;
}

@media (max-width: 1024px) {
    .container,
    .navbar .container,
    .auth-header,
    .new-footer .container {
        padding: 0 1.5rem;
    }

    .auth-card {
        grid-template-columns: 1fr !important;
    }

    .grid,
    .events-grid,
    .merchandise-grid,
    .pro-feature-grid,
    .comedians-grid,
    .stats-grid,
    .countdown-container,
    .gallery-col,
    .masterclass-content,
    .cinema-hero-grid,
    .hero-grid,
    .section-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }

    .hero,
    .page-banner,
    .auth-page-hero,
    .future-teaser-banner,
    .error-page-hero,
    .about-banner-legacy,
    .events-banner-showtime,
    .icons-banner-header,
    .member-banner-circle,
    .archive-banner-header,
    .concierge-banner-header,
    .hero-v2,
    .pro-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .banner-content h1,
    .section-title,
    .hero-content h1,
    .future-teaser-banner h1,
    .error-page-hero h1 {
        font-size: clamp(2.4rem, 3vw, 3.4rem);
    }

    .section-title {
        font-size: clamp(2rem, 2.2vw, 2.8rem);
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .container,
    .navbar .container,
    .auth-header,
    .new-footer .container {
        padding: 0 1.25rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-links,
    .nav-actions {
        width: 100%;
    }

    .hero,
    .page-banner,
    .auth-page-hero,
    .future-teaser-banner,
    .error-page-hero {
        padding: 3.5rem 0;
    }

    .banner-content h1,
    .future-teaser-banner h1,
    .error-page-hero h1,
    .section-title {
        text-align: center;
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .gallery-col,
    .new-footer-main,
    .section-grid,
    .stats-grid,
    .countdown-container {
        grid-template-columns: 1fr !important;
    }

    .hero-btns,
    .newsletter-inline,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-card {
        padding: 2.25rem;
    }
}

@media (max-width: 480px) {
    .container,
    .navbar .container,
    .auth-header,
    .new-footer .container {
        padding: 0 1rem;
    }

    .hero,
    .page-banner,
    .auth-page-hero,
    .future-teaser-banner,
    .error-page-hero {
        padding: 3rem 0;
    }

    .banner-content h1,
    .future-teaser-banner h1,
    .error-page-hero h1,
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.3rem);
    }

    .auth-card,
    .bento-card,
    .review-card,
    .new-footer-brand,
    .new-footer-section {
        padding: 1.5rem;
    }

    .hero-btns,
    .newsletter-inline,
    .form-actions {
        gap: 0.75rem;
    }
}

@media (max-width: 360px) {
    .container,
    .navbar .container,
    .auth-header,
    .new-footer .container {
        padding: 0 0.75rem;
    }

    .banner-content h1,
    .future-teaser-banner h1,
    .error-page-hero h1,
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .auth-card,
    .bento-card,
    .review-card,
    .new-footer-brand,
    .new-footer-section {
        padding: 1.25rem;
    }
}

