:root {
    --color-bg-dark: #1a1a1a;
    --color-bg-darker: #121212;
    --color-bg-card: #2d2d2d;
    --color-gold: #d4af37;
    --color-gold-light: #f3dfa2;
    --color-gold-muted: #8b7500;
    --color-red: #ff0000;
    --color-red-dark: #b30000;
    --color-white: #ffffff;
    --color-text-muted: #cccccc;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Courier Prime', monospace;

    --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
   
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Critical for preventing horizontal scroll */
    width: 100%;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    /* Ensure body fits */
    position: relative;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

/* Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

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

.text-red {
    color: var(--color-red);
}

.text-gold {
    color: var(--color-gold);
}

.text-white {
    color: var(--color-white);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-script);
    /* Script / Typewriter look */
    font-weight: 400;
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: var(--color-gold);
    margin-bottom: 0;
    letter-spacing: 0px;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2em 0.5em;
    border-radius: 4px;
}

.hero-tagline-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.underline-draw {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color-gold);
    transition: width 1s var(--ease-out-quint);
}

.section-title.visible .underline-draw {
    width: 100%;
}

.lead-text {
    font-family: var(--font-script);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--color-white);
    line-height: 1.8;
}

.body-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Loader */
.loader-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s var(--ease-out-quint), opacity 0.5s ease;
}

body.loaded .loader-curtain {
    transform: translateY(-100%);
    pointer-events: none;
}

.loader-content {
    text-align: center;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
}

.clapper-icon svg {
    width: 80px;
    height: 80px;
}

.animate-clap .clapper-top {
    transform-origin: 5px 65px;
    animation: clap 1s infinite alternate;
}

@keyframes clap {
    0% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Use 100% to match viewport, prevent overflow */
    padding: 1.5rem 0;
    z-index: 9100;
    /* Above film-grain (9000) */
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    /* Hardware acceleration for mobile stickiness */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.recording-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-red);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-right: 1rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(26, 0, 0, 0.5);
}

.rec-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-red);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 9200;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Active State (Hamburger Animation) */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 9150;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .recording-badge {
        display: none;
        /* Hide badge on mobile menu if desired */
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Ticket Style Button */
.btn-primary {
    background-color: var(--color-gold);
    color: #000;
    /* Use clip-path for a ticket shape */
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%,
            0 100%, 0 10px);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    border-left: 2px dashed rgba(0, 0, 0, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    border-right: 2px dashed rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 50px;
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px) scale(1.05);
    color: var(--color-gold);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Spotlights */
.spotlight {
    position: absolute;
    top: -20%;
    width: 300px;
    height: 1000px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.2), transparent);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.spotlight-left {
    left: 10%;
    transform: rotate(20deg);
    animation: spotlight-sway 8s infinite ease-in-out alternate;
}

.spotlight-right {
    right: 10%;
    transform: rotate(-20deg);
    animation: spotlight-sway 8s infinite ease-in-out alternate-reverse;
}

@keyframes spotlight-sway {
    0% {
        transform: rotate(15deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(25deg);
        opacity: 0.8;
    }
}

/* Marquee Lights */
.marquee-container {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 0;
    opacity: 0.3;
    overflow: hidden;
    /* Prevent marquee bleed */
}

.marquee-track {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
}

.light-bulb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333;
    box-shadow: 0 0 0 2px #222;
    animation: marquee-glow 3.5s infinite;
}

.light-bulb:nth-child(odd) {
    animation-delay: 0s;
}

.light-bulb:nth-child(even) {
    animation-delay: 1.75s;
}

.light-bulb:nth-child(3n) {
    animation-delay: 0.875s;
}

@keyframes marquee-glow {

    0%,
    100% {
        background-color: #333;
        box-shadow: 0 0 0 2px #222;
    }

    50% {
        background-color: var(--color-gold);
        box-shadow: 0 0 20px var(--color-gold), 0 0 40px var(--color-gold), 0 0 60px var(--color-gold);
    }
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.hero-logo-img {
    max-width: 400px;
    height: auto;
}

/* Responsive logo for tablets and mobiles */
@media (max-width: 800px) {
    .hero-logo-img {
        max-width: 330px;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 200px;
    }
}

.clapper-symbol {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fade-up 1s var(--ease-out-quint) forwards 0.5s;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.clapper-symbol svg .clapper-arm {
    transform-origin: 10px 75px;
    animation: clap-pulse 3s infinite ease-in-out;
}

.clapper-symbol:hover svg .clapper-arm {
    animation: clap 0.5s ease;
}

@keyframes clap-pulse {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(2deg) scale(1.05);
    }
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- New Additions: Projector & Bento --- */

/* Projector Container */
.projector-container {
    position: sticky;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
    margin-bottom: 2rem;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    /* Clip the light beam if it spills */
    width: 100%;
    /* Ensure it spans full width to clip properly */
}

.projector-img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.projector-light-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50vw;
    /* Reduced width to prevent overflow */
    max-width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at left, rgba(255, 255, 210, 0.3) 0%, transparent 70%);
    /* Center using translate(-50%, -50%) then offset slightly for the lens effect */
    transform: translate(-50%, -50%) rotate(-15deg) translateX(30px);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    animation: beam-flicker 4s infinite;
}

@keyframes beam-flicker {

    0%,
    100% {
        opacity: 0.3;
    }

    5% {
        opacity: 0.2;
    }

    10% {
        opacity: 0.4;
    }

    15% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.25;
    }
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background-color: var(--color-bg-darker);
    position: relative;
    background-image: radial-gradient(circle at bottom, #222 0%, #121212 70%);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease-out-quint);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.2s;
}

.stagger-2 {
    transition-delay: 0.4s;
}

/* Bento Grid Section ("Nano Banana Designs") */
.bento-section {
    padding: 6rem 0;
    background-color: #151515;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-item {
    background-color: #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--color-gold);
    z-index: 2;
}

.bento-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    transition: background 0.3s ease;
}

.bento-item:hover::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.bento-item:hover .bento-content {
    transform: translateY(0);
}

.bento-content h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.bento-content p {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-family: var(--font-body);
}

/* Bento Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

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

/* Responsive Bento */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large {
        grid-column: span 2;
        height: 300px;
    }

    .bento-wide {
        grid-column: span 2;
        height: 200px;
    }

    .bento-medium {
        grid-column: span 1;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide,
    .bento-medium {
        grid-column: span 1;
        height: 250px;
    }
}


/* Film Strip Divider */
.film-strip-divider {
    height: 60px;
    width: 100%;
    background-color: #000;
    background-image:
        linear-gradient(to right, transparent 50%, #000 50%),
        linear-gradient(to right, #333 40%, transparent 40%);
    background-size: 40px 100%, 40px 100%;
    position: relative;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.film-strip-divider::before,
.film-strip-divider::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: radial-gradient(#fff 2px, transparent 3px);
    background-size: 30px 15px;
    background-repeat: repeat-x;
    opacity: 0.5;
}

.film-strip-divider::after {
    top: auto;
    bottom: 5px;
}


/* Featured Section */
.featured-section {
    padding: 10rem 0;
    /* Large padding for dramatic effect */
    background: radial-gradient(circle at center, #2d2d2d 0%, #1a1a1a 70%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-curtains {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.curtain {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, #000, #400000 50%, #200000);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
}

.curtain.left {
    left: 0;
}

.curtain.right {
    right: 0;
    background: linear-gradient(to left, #000, #400000 50%, #200000);
}

.relative-z {
    position: relative;
    z-index: 5;
}

.tagline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease-out-quint);
}

.reveal-on-scroll.visible .tagline {
    opacity: 1;
    transform: translateY(0);
}

.tagline .emphasis {
    display: block;
    font-size: 1.2em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.tagline-sub {
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-family: serif;
    /* Theatrical feel */
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: #000;
    border-top: 1px solid #333;
}

.footer-msg {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-gold-muted);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background-color: var(--color-gold);
    color: #000;
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 10px var(--color-gold));
}

.loading-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background-color: var(--color-gold);
    border-radius: 50%;
    animation: dots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes dots {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.copyright {
    color: #555;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 5rem;
    }

    .curtain {
        width: 10%;
    }

    .projector-container {
        margin-top: -50px;
    }

    .projector-img {
        max-width: 200px;
    }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: #1a1a1a;
    border: 3px solid var(--color-gold);
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background-image: radial-gradient(#222 10%, #1a1a1a 90%);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    color: var(--color-red);
    transform: scale(1.2);
}

.modal-content {
    padding: 40px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 24px;
    }

    .modal-headline {
        font-size: 1.5rem;
    }

    .modal-section-title {
        font-size: 1.2rem;
    }
}

.modal-headline {
    color: var(--color-red);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: fade-in 0.5s ease 0.2s both;
}

.modal-tagline {
    color: var(--color-gold);
    font-family: var(--font-script);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slide-in-left 0.5s ease 0.3s both;
}

.modal-section {
    margin-bottom: 2rem;
    animation: fade-in 0.5s ease 0.4s both;
}

.modal-section:nth-child(2) {
    animation-delay: 0.5s;
}

.modal-section:nth-child(3) {
    animation-delay: 0.6s;
}

.modal-section-title {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px dotted var(--color-gold);
    display: inline-block;
}

.modal-features {
    list-style: none;
    padding: 0;
}

.modal-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    animation: slide-in 0.5s ease both;
    font-family: var(--font-script);
}

.modal-features li:nth-child(1) {
    animation-delay: 0.7s;
}

.modal-features li:nth-child(2) {
    animation-delay: 0.8s;
}

.modal-features li:nth-child(3) {
    animation-delay: 0.9s;
}

.modal-features li:nth-child(4) {
    animation-delay: 1.0s;
}

.modal-features li:nth-child(5) {
    animation-delay: 1.1s;
}

.modal-coming-soon {
    text-align: center;
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.modal-cta {
    display: block;
    margin: 0 auto;
    animation: fade-in 0.5s ease 1.2s both;
}

@keyframes slide-in-left {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

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

@keyframes slide-in {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }

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

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.btn:focus,
.social-icon:focus,
.modal-close:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}