/* Bianca Kovacs - Design System & Custom CSS */

:root {
  --primary: #E50914; /* Netflix/Cinematic Red */
  --primary-hover: #B81D24;
  --secondary: #d4af37; /* Gold accent */
  --dark: #0f0f0f;
  --darker: #050505;
  --light: #f5f5f5;
  --text-gray: #a3a3a3;
  --glass-bg: rgba(25, 25, 25, 0.5);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --shadow-glow: 0 0 20px rgba(229, 9, 20, 0.4);
}

/* Tailwind-like utilities for rapid UI */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .md\:col-span-12 { grid-column: span 12 / span 12; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-3 { grid-column: span 3 / span 3; }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
}
@media (min-width: 1280px) {
    .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.w-full { width: 100%; }
.h-full { height: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-0 { padding: 0; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-20 { padding-bottom: 5rem; }
.border-b-2 { border-bottom-width: 2px; }
.border-t-4 { border-top-width: 4px; }
.border-t-8 { border-top-width: 8px; border-top-style: solid; }
.border-t-secondary { border-top-color: var(--secondary); }
.border-t-red-600 { border-top-color: #dc2626; }
.border-primary { border-color: var(--primary); }
.border-secondary { border-color: var(--secondary); }
.bg-dark { background-color: var(--dark); }
.bg-darker { background-color: var(--darker); }
.bg-primary { background-color: var(--primary); }
.bg-white { background-color: #fff; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-dark\/50 { background-color: rgba(15, 15, 15, 0.5); }
.bg-dark\/80 { background-color: rgba(15, 15, 15, 0.8); }
.bg-dark\/90 { background-color: rgba(15, 15, 15, 0.9); }
.bg-dark\/85 { background-color: rgba(15, 15, 15, 0.85); }
.bg-primary\/20 { background-color: rgba(229, 9, 20, 0.2); }
.bg-secondary\/20 { background-color: rgba(212, 175, 55, 0.2); }
.opacity-50 { opacity: 0.5; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-light { font-weight: 300; }
.font-heading { font-family: var(--font-heading); }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.text-left { text-align: left; }
.text-dark { color: var(--dark); }
.object-cover { object-fit: cover; }
.object-top { object-position: top; }
.transition-opacity { transition-property: opacity; transition-duration: 300ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-duration: 300ms; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-secondary:hover { color: var(--secondary); }
.hover\:text-white:hover { color: #fff; }
.hover\:scale-105:hover { transform: scale(1.05); }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-3\/4 { width: 75%; }
.h-3\/4 { height: 75%; }
.w-2\/3 { width: 66.666667%; }
.h-2\/3 { height: 66.666667%; }
.min-h-screen { min-height: 100vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.min-h-\[40vh\] { min-height: 40vh; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.pt-\[56\.25\%\] { padding-top: 56.25%; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-secondary { color: var(--secondary); }
.text-white { color: #fff; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8); }

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

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

ul {
    list-style: none;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

.text-red {
    color: #ff2a44;
    text-shadow: 0 0 10px rgba(255, 42, 68, 0.5);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.padding-y {
    padding: 6rem 0;
}

.bg-darker {
    background-color: var(--darker);
}

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

/* Glassmorphism Classes */
.glass-effect {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-outline:hover {
    background-color: var(--light);
    color: var(--dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: padding 0.3s ease, background 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo .font-bold {
    font-family: var(--font-heading);
    font-weight: 900;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    color: white;
}

.nav-link.active {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections General */
.section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Realistic Ticket Design */
.real-ticket {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    position: relative;
    max-width: 800px;
    margin: 0 auto 5px auto;
    transition: transform 0.3s ease;
}

.real-ticket:hover {
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .real-ticket {
        flex-direction: row;
    }
}

.real-ticket-left {
    padding: 2.5rem;
    flex: 3;
    border-bottom: 2px dashed #d1d5db;
    position: relative;
    background: linear-gradient(to right, #ffffff, #f9fafb);
}

@media (min-width: 768px) {
    .real-ticket-left {
        border-bottom: none;
        border-right: 2px dashed #d1d5db;
    }
    .real-ticket-left::after, .real-ticket-left::before {
        content: '';
        position: absolute;
        right: -15px;
        width: 30px;
        height: 30px;
        background-color: var(--darker);
        border-radius: 50%;
        box-shadow: inset 5px 0 5px rgba(0,0,0,0.1);
    }
    .real-ticket-left::before { top: -15px; }
    .real-ticket-left::after { bottom: -15px; }
}

.real-ticket-right {
    padding: 2rem;
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f3f4f6;
    text-align: center;
}

.real-ticket-right p.text-gray-500 {
    font-size: 0.775rem;
    letter-spacing: 0px;
    padding: 0 0.79rem;
}

.barcode {
    width: 80%;
    height: 40px;
    background: repeating-linear-gradient(
        to right,
        #111,
        #111 2px,
        #f3f4f6 2px,
        #f3f4f6 4px,
        #111 4px,
        #111 5px,
        #f3f4f6 5px,
        #f3f4f6 8px,
        #111 8px,
        #111 12px,
        #f3f4f6 12px,
        #f3f4f6 14px
    );
    margin: 1rem auto;
    opacity: 0.8;
}

.real-ticket .ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.real-ticket .ticket-category {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.real-ticket .ticket-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #000;
}

.real-ticket .ticket-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.real-ticket .detail-item strong {
    display: block;
    font-family: var(--font-heading);
    color: #111;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.real-ticket .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #111;
}

.btn-ticket {
    background-color: var(--primary);
    color: white;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-ticket:hover {
    background-color: #000;
    color: white;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.footer-socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.875rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1.0s; }

.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0,0,0,0.4)) drop-shadow(0 4px 3px rgba(0,0,0,0.3)); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0,0,0,0.5)); }
.inline-block { display: inline-block; }
.block { display: block; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.text-9xl { font-size: 8rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pt-\[56\.25\%\] { padding-top: 56.25%; }
.z-20 { z-index: 20; }
.border { border-width: 1px; border-style: solid; }
.shrink-0 { flex-shrink: 0; }
.grayscale { filter: grayscale(100%); }
.bg-cover { background-size: cover; }
.bg-top { background-position: top; }
.bg-center { background-position: center; }
.mix-blend-luminosity { mix-blend-mode: luminosity; }
@media (min-width: 768px) {
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:text-8xl { font-size: 6rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:items-start { align-items: flex-start; }
    .md\:flex-row { flex-direction: row; }
    .md\:w-72 { width: 18rem; }
    .md\:p-14 { padding: 3.5rem; }
}
@media (min-width: 1024px) {
    .lg\:text-9xl { font-size: 8rem; }
}

/* Hero Social Row */
.hero-social-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}
.hero-social-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}
.hero-social-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.15), transparent);
}
.hero-social-icons {
    display: flex;
    gap: 0.75rem;
}
.hero-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.hero-social-icons a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(229,9,20,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229,9,20,0.2);
}

/* Ticket Card — real ticket style */
.ticket-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    overflow: visible;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.25rem;
    position: relative;
}
/* Punch holes */
.ticket-card::before,
.ticket-card::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--dark);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.ticket-card::before { left: -9px; }
.ticket-card::after { right: -9px; }
.ticket-card:last-child {
    margin-bottom: 0;
}
.ticket-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}
.ticket-card[data-accent="primary"] {
    border-left: 3px solid var(--primary);
}
.ticket-card[data-accent="red"] {
    border-left: 3px solid #ef4444;
}
.ticket-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    gap: 1.5rem;
}
.ticket-card-info {
    flex: 1;
    min-width: 0;
}
.ticket-card-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 0.375rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.2);
    margin-bottom: 0.4rem;
}
.ticket-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.ticket-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #9ca3af;
}
.ticket-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.ticket-card-meta i {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
}
.ticket-card-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding-left: 1.5rem;
    border-left: 2px dashed rgba(255,255,255,0.1);
}
.ticket-card-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    white-space: nowrap;
}
.ticket-card-action .btn-ticket {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

/* Toggle button */
.ticket-card-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ticket-card-toggle:hover {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
}
.ticket-card-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}
.ticket-card .toggle-text-less {
    display: none;
}

/* Expanded state */
.ticket-card.expanded .toggle-text-more {
    display: none;
}
.ticket-card.expanded .toggle-text-less {
    display: inline;
}
.ticket-card.expanded .ticket-card-toggle i {
    transform: rotate(180deg);
}

/* Collapsible details */
.ticket-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}
.ticket-card.expanded .ticket-card-details {
    max-height: 200px;
    padding: 0.75rem 1.5rem 1.25rem;
}
.ticket-card-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.ticket-card-details-grid > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.ticket-card-details-grid strong {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
}
.ticket-card-details-grid span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .imdb-layout {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    .imdb-visuals {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links, .desktop-socials {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
        padding-right: 0.75rem;
    }
    .logo {
        padding-left: 0.75rem;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 0.75rem 2rem;
        gap: 0;
        border-bottom: 1px solid var(--glass-border);
        align-items: center;
    }
    .nav-links.active li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .nav-links.active li:last-child {
        border-bottom: none;
    }
    .nav-links.active .nav-link {
        display: block;
        padding: 0.65rem 0;
        font-size: 0.8rem;
    }

    /* Global section spacing */
    .padding-y {
        padding: 2.5rem 0;
    }
    .section.padding-y .mb-16,
    .section.padding-y .mb-12 {
        margin-bottom: 2rem;
    }
    .container {
        width: 92%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    /* Homepage hero — mobile rework */
    #home {
        min-height: 100svh;
        display: flex;
        align-items: flex-end;
        padding: 0;
        position: relative;
    }
    /* Hide the three absolute overlay divs on mobile */
    #home > .absolute {
        display: none;
    }
    /* Replace with a single pseudo-element background */
    #home::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--hero-bg-mobile);
        background-size: cover;
        background-position: center top;
        opacity: 0.5;
    }
    #home::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--darker) 0%, rgba(5,5,5,0.6) 40%, transparent 70%);
    }
    #home > .container {
        position: relative;
        z-index: 10;
        padding: 0 1rem 1.5rem;
    }
    .section-badge {
        margin-top: 0.5rem;
        font-size: 0.65rem;
    }
    .hero-title-cinema {
        margin-top: 0.25rem;
    }
    .hero-title-underline {
        margin-bottom: 1rem;
    }

    /* Buttons: two per line, fill width evenly */
    .flex.flex-wrap.gap-4 {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
        width: 100%;
    }
    .flex.flex-wrap.gap-4 .btn {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.7rem;
        padding: 0.6rem 0.75rem;
    }

    /* Hero social row */
    .hero-social-row {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
        align-items: center;
    }
    .hero-social-line {
        display: none;
    }
    .hero-social-label {
        font-size: 0.6rem;
    }
    .hero-social-icons a {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    /* Ticket cards mobile */
    .ticket-card + .ticket-card {
        margin-top: 1rem;
    }
    .ticket-card-main {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 0.5rem;
    }
    .ticket-card-info {
        flex: 1 1 100%;
    }
    .ticket-card-title {
        font-size: 1.05rem;
        margin-bottom: 0.3rem;
    }
    .ticket-card-meta {
        font-size: 0.7rem;
        gap: 0.75rem;
    }
    .ticket-card-action {
        flex: 1 1 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 0.75rem;
        padding-left: 0;
        border-left: none;
        border-top: 2px dashed rgba(255,255,255,0.08);
    }
    .ticket-card-price {
        font-size: 1.35rem;
        white-space: nowrap;
    }
    .ticket-card-action .btn-ticket {
        padding: 0.5rem 1.25rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }
    /* Move punch holes to sides of dashed line on mobile */
    .ticket-card::before,
    .ticket-card::after {
        top: auto;
        transform: translateX(-50%);
        left: 50%;
    }
    .ticket-card::before {
        bottom: calc(100% - 4.5rem);
        left: -9px;
        transform: translateY(50%);
    }
    .ticket-card::after {
        bottom: calc(100% - 4.5rem);
        right: -9px;
        left: auto;
        transform: translateY(50%);
    }
    .ticket-card-toggle {
        font-size: 0.65rem;
        padding: 0.5rem;
    }
    .ticket-card-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    .ticket-card-details-grid strong {
        font-size: 0.6rem;
    }
    .ticket-card-details-grid span {
        font-size: 0.75rem;
    }

    /* Page hero */
    .page-hero {
        padding: 7rem 0 3rem;
    }

    /* Section headings */
    .section-title {
        font-size: 1.75rem;
    }
    .font-heading.text-4xl,
    .font-heading.text-5xl {
        font-size: 1.5rem;
    }
    .font-heading.text-2xl,
    .font-heading.text-3xl {
        font-size: 1.15rem;
    }

    /* Text sizes */
    .text-xl {
        font-size: 0.95rem;
    }
    .text-lg {
        font-size: 0.875rem;
    }
    .text-2xl {
        font-size: 1.15rem;
    }

    /* Bento cards */
    .bento-card {
        padding: 1.1rem;
        border-radius: 1rem;
    }
    .bento-main {
        padding: 1.1rem;
    }
    .bento-main .space-y-6 > * + * {
        margin-top: 0.75rem;
    }
    .bento-main .text-xl {
        font-size: 0.85rem;
    }
    .bento-main .text-lg {
        font-size: 0.8rem;
    }
    .bento-main h3 {
        margin-bottom: 0.5rem !important;
    }
    .bento-main .mt-8,
    .bento-main .mt-10 {
        margin-top: 1rem;
    }
    .bento-icon-box {
        width: 2rem;
        height: 2rem;
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    .bento-watermark {
        font-size: 6rem;
    }
    .bento-image {
        min-height: 280px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .stat-icon-wrapper {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.85rem;
    }

    /* Video cards */
    .video-bento-card {
        padding: 1rem;
        padding-bottom: 1.25rem;
        border-radius: 1rem;
    }
    .video-bento-card .video-meta h3 {
        font-size: 1rem;
    }
    .video-bento-card .video-meta p {
        font-size: 0.75rem;
    }
    .grid.grid-cols-1.md\\:grid-cols-2 {
        gap: 1.25rem;
    }

    /* Tickets (old real-ticket) */
    .real-ticket {
        border-radius: 0.75rem;
    }
    .real-ticket-left {
        padding: 1.25rem;
    }
    .real-ticket .ticket-title {
        font-size: 1.3rem;
    }
    .real-ticket .ticket-details {
        gap: 0.75rem;
        font-size: 0.75rem;
    }
    .real-ticket-right {
        padding: 1.25rem;
    }
    .real-ticket .price {
        font-size: 1.75rem;
    }

    /* IMDb carousel — 2 items on mobile */
    .imdb-slide {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 3px;
    }
    .imdb-carousel {
        padding: 0 40px;
    }
    .imdb-carousel-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }
    .imdb-carousel-dots {
        margin-top: 1rem;
    }
    .imdb-slide-caption h3 {
        font-size: 0.65rem;
    }
    .imdb-slide-caption p {
        font-size: 0.55rem;
    }
    .imdb-slide-caption {
        bottom: 0.4rem;
        left: 0.4rem;
        right: 0.4rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }

    /* Social row in hero */
    .mt-16 {
        margin-top: 2.5rem;
    }

    /* Default buttons */
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.75rem;
    }

    /* Contact page */
    .bento-card .space-y-8 > * + * {
        margin-top: 1.25rem;
    }

    /* Podcast hero */
    .podcast-content {
        padding: 2rem 1.5rem;
    }
    .podcast-title {
        font-size: 2.5rem;
    }

    /* Grid gaps */
    .gap-10 {
        gap: 1.25rem;
    }
    .gap-6 {
        gap: 0.75rem;
    }

    /* Bento layout */
    .bento-layout {
        gap: 1rem;
    }
    .bento-stats-container {
        gap: 0.75rem !important;
    }

    /* Contact form */
    .grid.grid-cols-1.md\\:grid-cols-12 {
        gap: 1.25rem;
    }

    /* Sobre mi page bio text */
    .prose p, .prose-lg p, .prose-light p {
        font-size: 0.875rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    .hero-title-text {
        font-size: clamp(2.5rem, 14vw, 3.5rem) !important;
    }
    .section-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    .flex.flex-wrap.gap-4 .btn {
        font-size: 0.65rem;
        padding: 0.55rem 0.5rem;
    }
    .text-xl {
        font-size: 0.9rem;
    }
    .bento-card {
        padding: 1rem;
    }
    .bento-main {
        padding: 1rem;
    }
    .font-heading.text-2xl,
    .font-heading.text-3xl {
        font-size: 1.05rem;
    }
    .real-ticket .ticket-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .imdb-carousel {
        padding: 0 32px;
    }
    .imdb-carousel-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }
    .imdb-slide {
        padding: 0 2px;
    }
    .filmography-card {
        padding: 0.75rem 0.5rem;
    }
    .filmography-icon {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    .filmography-title {
        font-size: 0.65rem;
    }
    .filmography-role {
        font-size: 0.6rem;
    }
    .filmography-detail {
        font-size: 0.55rem;
    }
    .filmography-note {
        font-size: 0.45rem;
    }
    .footer-socials {
        gap: 1rem;
        font-size: 1.25rem;
    }
    .ticket-card-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Cinema Title */
.hero-title-cinema {
    display: flex;
    flex-direction: column;
    margin: 0 0 0.5rem;
    padding: 0;
    line-height: 1;
    overflow: hidden;
}
.hero-title-line {
    display: block;
    overflow: hidden;
}
.hero-title-text {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3.2rem, 11vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    position: relative;
    /* Curtain reveal: start off-stage, slide in */
    transform: translateY(110%);
    animation: curtainReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title-line--2 .hero-title-text {
    animation-delay: 0.15s;
}
/* Subtle gold shimmer sweep across text */
.hero-title-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212,175,55,0) 35%,
        rgba(212,175,55,0.35) 50%,
        rgba(212,175,55,0) 65%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 250% 100%;
    background-position: 150% 0;
    animation: spotlightSweep 4s ease-in-out 1.2s infinite;
    pointer-events: none;
}

/* Red accent on last name */
.hero-title-line--2 .hero-title-text {
    color: transparent;
    background: linear-gradient(90deg, #fff 0%, #fff 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-title-line--2 .hero-title-text::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(229,9,20,0) 35%,
        rgba(229,9,20,0.4) 50%,
        rgba(229,9,20,0) 65%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 250% 100%;
    background-position: 150% 0;
    animation: spotlightSweep 4s ease-in-out 1.4s infinite;
}

/* Animated underline like a film strip / stage mark */
.hero-title-underline {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    border-radius: 2px;
    animation: stageMarkDraw 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 12px rgba(229,9,20,0.4), 0 0 30px rgba(212,175,55,0.15);
}

@keyframes curtainReveal {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spotlightSweep {
    0%, 100% {
        background-position: 150% 0;
    }
    50% {
        background-position: -50% 0;
    }
}

@keyframes stageMarkDraw {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: min(280px, 50%);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .hero-title-text {
        font-size: clamp(4.5rem, 10vw, 7rem);
    }
}

/* Page Hero Section */
.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    opacity: 0.25;
    mix-blend-mode: luminosity;
}
.page-hero .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--darker) 0%, rgba(5,5,5,0.7) 50%, rgba(5,5,5,0.9) 100%);
}
.page-hero .page-hero-overlay-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, transparent 0%, var(--darker) 75%);
}
.section-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.section-badge--primary {
    color: var(--primary);
    border: 1px solid rgba(229,9,20,0.3);
    background: rgba(229,9,20,0.1);
}
.section-badge--secondary {
    color: var(--secondary);
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.1);
}
.section-badge--imdb {
    color: #f5c518;
    border: 1px solid rgba(245,197,24,0.3);
    background: rgba(245,197,24,0.1);
}
.section-badge--red {
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
    background: rgba(239,68,68,0.1);
}
.section-badge--white {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

/* Video Card Bento Style */
.video-bento-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.video-bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1h2v2H1z" fill="rgba(255,255,255,0.02)" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}
.video-bento-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transform: translateY(-4px);
}
.video-bento-card .video-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    background: #000;
    position: relative;
    padding-top: 56.25%;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s ease;
}
.video-bento-card:hover .video-wrapper {
    border-color: rgba(229,9,20,0.4);
}
.video-bento-card .video-meta {
    position: relative;
    z-index: 1;
    margin-top: 1.25rem;
}
.video-bento-card .video-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}
.video-bento-card .video-meta h3 a:hover {
    color: var(--primary);
}
.video-bento-card .video-meta p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}
.video-bento-card .video-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 0.375rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

/* Bento Grid Layout */
.bento-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229,9,20,0.1) 0%, rgba(229,9,20,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.bento-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.bento-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .bento-layout {
        grid-template-columns: repeat(12, 1fr);
    }
    .bento-main {
        grid-column: span 8;
    }
    .bento-image {
        grid-column: span 4;
    }
    .bento-stats-container {
        grid-column: span 12;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.bento-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.bento-card:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.bento-main {
    padding: 1.5rem;
}

.bento-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1h2v2H1z" fill="rgba(255,255,255,0.03)" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: 0;
}

.bento-watermark {
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    font-size: 15rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    transform: rotate(10deg);
    transition: transform 1s ease;
    z-index: 0;
    line-height: 1;
}
.bento-main:hover .bento-watermark {
    transform: rotate(5deg) scale(1.05);
}

.bento-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(229,9,20,0.2), rgba(229,9,20,0.05));
    border: 1px solid rgba(229,9,20,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 2rem;
}
.shadow-primary-glow {
    box-shadow: 0 0 20px rgba(229,9,20,0.15);
}

.bento-image {
    padding: 0;
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
    .bento-image {
        min-height: 100%;
    }
}
.bento-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.8;
    mix-blend-mode: luminosity;
    transition: opacity 0.7s ease, transform 0.7s ease, mix-blend-mode 0.7s ease;
}
.bento-image:hover img {
    opacity: 1;
    transform: scale(1.05);
    mix-blend-mode: normal;
}
.bento-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.9), transparent);
}
.bento-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(5,5,5,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.bento-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0.03), transparent);
}
.bento-stat:hover {
    border-color: rgba(229,9,20,0.3);
}
.bento-stat:nth-child(3):hover { border-color: rgba(212,175,55,0.3); }

.stat-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.bento-stat:hover .stat-icon-wrapper.group-hover-primary {
    color: var(--primary);
    transform: scale(1.1);
    background: rgba(229,9,20,0.1);
}
.bento-stat:hover .stat-icon-wrapper.group-hover-secondary {
    color: var(--secondary);
    transform: scale(1.1);
    background: rgba(212,175,55,0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.bento-stat:hover .stat-number.group-hover-primary { color: var(--primary); transform: scale(1.05); }
.bento-stat:hover .stat-number.group-hover-secondary { color: var(--secondary); transform: scale(1.05); }

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.text-imdb { color: #f5c518; }
.bento-imdb {
    background: linear-gradient(135deg, rgba(245,197,24,0.1), rgba(245,197,24,0.02));
    border-color: rgba(245,197,24,0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bento-imdb:hover {
    box-shadow: 0 0 30px rgba(245,197,24,0.15);
    border-color: rgba(245,197,24,0.4);
}
.imdb-watermark {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    font-size: 8rem;
    color: #f5c518;
    opacity: 0.05;
    transition: all 0.5s ease;
    z-index: 0;
}
.bento-imdb:hover .imdb-watermark {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.15;
}
.imdb-badge {
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(245,197,24,0.15);
    color: #f5c518;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(245,197,24,0.3);
}
.group-hover-text-imdb { transition: color 0.3s ease; }
.bento-imdb:hover .group-hover-text-imdb { color: #f5c518; }

.imdb-link {
    margin-top: 1.5rem;
    color: #f5c518;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}
.bento-imdb:hover .imdb-link {
    gap: 1rem;
}
@media (max-width: 1023px) {
    .bento-stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .bento-imdb {
        grid-column: span 2;
    }
}
@media (max-width: 640px) {
    .bento-stats-container {
        grid-template-columns: 1fr;
    }
    .bento-imdb {
        grid-column: span 1;
    }
}

/* Filmography Card */
.filmography-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 2 / 3;
    height: 100%;
}
.filmography-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245,197,24,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(245,197,24,0.1);
}
.filmography-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(245,197,24,0.05));
    border: 1px solid rgba(245,197,24,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5c518;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.filmography-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}
.filmography-role {
    font-size: 0.8rem;
    color: #f5c518;
    font-weight: 700;
    margin: 0 0 0.2rem;
}
.filmography-detail {
    font-size: 0.7rem;
    color: #9ca3af;
    margin: 0;
    font-style: italic;
}
.filmography-note {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border: 1px solid rgba(229,9,20,0.3);
    border-radius: 4px;
    background: rgba(229,9,20,0.1);
}

@media (max-width: 768px) {
    .filmography-card {
        padding: 1rem 0.75rem;
    }
    .filmography-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    .filmography-title {
        font-size: 0.75rem;
    }
    .filmography-role {
        font-size: 0.65rem;
    }
    .filmography-detail {
        font-size: 0.6rem;
    }
    .filmography-note {
        font-size: 0.5rem;
        padding: 0.1rem 0.35rem;
    }
}

/* --- IMDb Carousel --- */
.imdb-carousel {
    position: relative;
    padding: 0 54px;
}
.imdb-carousel-viewport {
    overflow: hidden;
    padding-top: 10px;
    margin-top: -10px;
}
.imdb-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.imdb-slide {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 6px;
    box-sizing: border-box;
}
.imdb-slide-inner {
    display: block;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    aspect-ratio: 2 / 3;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.imdb-slide-inner:hover {
    transform: translateY(-6px);
    border-color: #f5c518;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.imdb-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}
.imdb-slide-inner:hover img {
    opacity: 1;
}
.imdb-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.imdb-slide-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
}
.imdb-slide-caption h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}
.imdb-slide-inner:hover .imdb-slide-caption h3 {
    color: #f5c518;
}
.imdb-slide-caption p {
    font-size: 0.75rem;
    color: #d1d5db;
    margin: 0;
}

/* Carousel Arrows */
.imdb-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(15,15,15,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.imdb-carousel-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-50%) scale(1.1);
}
.imdb-carousel-arrow--left {
    left: 0;
}
.imdb-carousel-arrow--right {
    right: 0;
}

/* Carousel Dots */
.imdb-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.imdb-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.imdb-carousel-dot:hover {
    background: rgba(255,255,255,0.5);
}
.imdb-carousel-dot.active {
    width: 24px;
    background: #f5c518;
}
@media (max-width: 768px) {
    .imdb-slide {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 3px;
    }
}

