/* ============================================
DESIGN TOKENS & CUSTOM PROPERTIES
============================================ */
 :root {
     /* Cinema Theme Color Palette */
     --color-base-bg: #faf9f7;
     --color-base-surface: #ffffff;
     --color-base-text: #1a1a1a;
     --color-base-text-muted: #4a4a4a;

     /* Cinema-inspired accents (film reel, screen, projector) */
     --color-accent-1: #d4af37;
     /* Golden ticket/reel */
     --color-accent-2: #8b4513;
     /* Warm brown/leather */
     --color-accent-3: #2c3e50;
     /* Dark slate/screen */
     --color-accent-light: #fef9e7;
     /* Pale gold */

     /* Functional Colors */
     --color-shadow: rgba(212, 175, 55, 0.15);
     --color-border: rgba(212, 175, 55, 0.2);
     --color-hover: rgba(212, 175, 55, 0.08);

     /* Gradients */
     --gradient-primary: linear-gradient(135deg, var(--color-accent-1) 0%, var(--color-accent-2) 100%);
     --gradient-subtle: linear-gradient(180deg, var(--color-base-bg) 0%, var(--color-accent-light) 100%);
     --gradient-screen: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);

     /* Spacing Scale */
     --space-xs: 0.25rem;
     --space-sm: 0.5rem;
     --space-md: 1rem;
     --space-lg: 1.5rem;
     --space-xl: 2rem;
     --space-2xl: 3rem;
     --space-3xl: 4rem;
     --space-4xl: 6rem;

     /* Border Radius */
     --radius-sm: 4px;
     --radius-md: 8px;
     --radius-lg: 12px;
     --radius-xl: 16px;
     --radius-2xl: 24px;
     --radius-full: 9999px;

     /* Shadows */
     --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
     --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
     --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06);
     --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
     --shadow-theme: 0 10px 30px var(--color-shadow), 0 4px 10px rgba(0, 0, 0, 0.06);

     /* Typography */
     --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
     --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
     --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
     --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
     --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
     --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
     --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
     --text-3xl: clamp(2rem, 1.6rem + 2vw, 2.5rem);
     --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
     --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);

     --weight-normal: 400;
     --weight-medium: 500;
     --weight-semibold: 600;
     --weight-bold: 700;
     --weight-extrabold: 800;

     --leading-tight: 1.25;
     --leading-normal: 1.5;
     --leading-relaxed: 1.75;
 }

 /* ============================================
RESET & BASE STYLES
============================================ */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
     scroll-padding-top: 80px;
 }

 body {
     font-family: var(--font-sans);
     font-size: var(--text-base);
     line-height: var(--leading-relaxed);
     color: var(--color-base-text);
     background-color: var(--color-base-bg);
     overflow-x: hidden;
 }

 /* ============================================
NAVIGATION BAR
============================================ */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     background: rgba(255, 255, 255, 0.8);
     -webkit-backdrop-filter: blur(12px) saturate(180%);
     backdrop-filter: blur(12px) saturate(180%);
     border-bottom: 1px solid var(--color-border);
     box-shadow: var(--shadow-sm);
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .navbar-content {
     max-width: 1400px;
     margin: 0 auto;
     padding: var(--space-md) var(--space-lg);
     display: flex;
     align-items: center;
     gap: var(--space-lg);
     flex-wrap: wrap;
 }

 .navbar-brand {
     font-size: var(--text-lg);
     font-weight: var(--weight-bold);
     color: var(--color-accent-1);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .navbar-brand:hover {
     color: var(--color-accent-2);
 }

 .navbar-breadcrumb {
     display: flex;
     gap: var(--space-sm);
     list-style: none;
     align-items: center;
     font-size: var(--text-sm);
 }

 .navbar-breadcrumb li {
     display: flex;
     align-items: center;
     gap: var(--space-sm);
 }

 .navbar-breadcrumb li:not(:last-child)::after {
     content: '›';
     color: var(--color-base-text-muted);
     font-size: var(--text-lg);
 }

 .navbar-breadcrumb a {
     color: var(--color-base-text-muted);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .navbar-breadcrumb a:hover {
     color: var(--color-accent-1);
 }

 /* ============================================
HERO SECTION
============================================ */
 .hero {
     min-height: 70vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: var(--space-4xl) var(--space-lg);
     background: var(--gradient-subtle);
     position: relative;
     overflow: hidden;
     margin-top: 60px;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
         repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px),
         repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
     pointer-events: none;
 }

 .hero-svg {
     width: 350px;
     height: 350px;
     margin-bottom: var(--space-2xl);
     position: relative;
     z-index: 1;
 }

 .hero-title {
     font-size: var(--text-5xl);
     font-weight: var(--weight-extrabold);
     text-align: center;
     margin-bottom: var(--space-lg);
     background: var(--gradient-primary);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     letter-spacing: -0.03em;
     position: relative;
     z-index: 1;
 }

 .hero-subtitle {
     font-size: var(--text-xl);
     color: var(--color-base-text-muted);
     text-align: center;
     max-width: 600px;
     position: relative;
     z-index: 1;
 }

 /* SVG Animations */
 @keyframes floatFilmReel {

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

     50% {
         transform: translateY(-15px) rotate(5deg);
     }
 }

 @keyframes rotateReel {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 @keyframes pulseGlow {

     0%,
     100% {
         opacity: 0.8;
         filter: blur(3px);
     }

     50% {
         opacity: 1;
         filter: blur(5px);
     }
 }

 @keyframes floatTicket {

     0%,
     100% {
         transform: translateY(0px) translateX(0px) rotate(-5deg);
     }

     50% {
         transform: translateY(-20px) translateX(5px) rotate(0deg);
     }
 }

 @keyframes scaleProjector {

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

     50% {
         transform: scale(1.05);
     }
 }

 .film-reel {
     animation: floatFilmReel 5s ease-in-out infinite;
 }

 .reel-center {
     animation: rotateReel 20s linear infinite;
     transform-origin: center;
 }

 .projector-light {
     animation: pulseGlow 3s ease-in-out infinite;
 }

 .ticket {
     animation: floatTicket 6s ease-in-out infinite;
 }

 .projector {
     animation: scaleProjector 4s ease-in-out infinite;
 }

 /* ============================================
CONTENT SECTION
============================================ */
 .content-section {
     max-width: 1400px;
     margin: 0 auto;
     padding: var(--space-4xl) var(--space-lg);
 }

 .intro-text {
     font-size: var(--text-lg);
     color: var(--color-base-text-muted);
     text-align: center;
     max-width: 800px;
     margin: 0 auto var(--space-3xl) auto;
     line-height: var(--leading-relaxed);
 }

 /* ============================================
MEDIA LIST (Ordered List with Modern Cards)
============================================ */
 .media-list {
     list-style: none;
     counter-reset: media-counter;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: var(--space-xl);
     margin-bottom: var(--space-4xl);
     padding: 0;
 }

 .media-list li {
     background: var(--color-base-surface);
     border-radius: var(--radius-xl);
     padding: var(--space-xl);
     box-shadow: var(--shadow-md);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     counter-increment: media-counter;
 }

 .media-list li::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--gradient-primary);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
 }

 .media-list li::after {
     content: counter(media-counter);
     position: absolute;
     top: var(--space-md);
     left: var(--space-md);
     width: 32px;
     height: 32px;
     background: var(--gradient-primary);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: var(--text-sm);
     font-weight: var(--weight-bold);
     box-shadow: var(--shadow-sm);
 }

 .media-list li:hover {
     transform: translateY(-8px) scale(1.02);
     box-shadow: var(--shadow-theme);
 }

 .media-list li:hover::before {
     transform: scaleX(1);
 }

 .media-list li span[typeof] {
     display: block;
     margin-top: var(--space-sm);
     margin-left: var(--space-3xl);
 }

 .media-list li span[property="name"] {
     font-size: var(--text-lg);
     font-weight: var(--weight-semibold);
     color: var(--color-base-text);
     display: block;
     margin-bottom: var(--space-xs);
     line-height: var(--leading-tight);
 }

 .media-list li span[property="name"]::after {
     content: ' →';
     color: var(--color-accent-1);
     opacity: 0;
     transition: opacity 0.3s ease;
     margin-left: var(--space-xs);
 }

 .media-list li:hover span[property="name"]::after {
     opacity: 1;
 }

 .media-list li link[property="sameAs"] {
     display: none;
 }

 /* Staggered entrance animations */
 .media-list li {
     animation: fadeInUp 0.6s ease forwards;
     opacity: 0;
 }

 .media-list li:nth-child(1) {
     animation-delay: 0.05s;
 }

 .media-list li:nth-child(2) {
     animation-delay: 0.1s;
 }

 .media-list li:nth-child(3) {
     animation-delay: 0.15s;
 }

 .media-list li:nth-child(4) {
     animation-delay: 0.2s;
 }

 .media-list li:nth-child(5) {
     animation-delay: 0.25s;
 }

 .media-list li:nth-child(6) {
     animation-delay: 0.3s;
 }

 .media-list li:nth-child(7) {
     animation-delay: 0.35s;
 }

 .media-list li:nth-child(8) {
     animation-delay: 0.4s;
 }

 .media-list li:nth-child(n+9) {
     animation-delay: 0.45s;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

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

 /* ============================================
FOOTER
============================================ */
 .footer {
     background: var(--color-base-surface);
     border-top: 1px solid var(--color-border);
     padding: var(--space-3xl) var(--space-lg) var(--space-xl) var(--space-lg);
     text-align: center;
 }

 .language-selector {
     display: flex;
     gap: var(--space-md);
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: var(--space-2xl);
 }

 .language-button {
     padding: var(--space-sm) var(--space-lg);
     border-radius: var(--radius-full);
     background: transparent;
     border: 1px solid var(--color-border);
     color: var(--color-base-text-muted);
     text-decoration: none;
     font-size: var(--text-sm);
     font-weight: var(--weight-medium);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .language-button:hover {
     background: var(--gradient-primary);
     color: white;
     border-color: transparent;
     transform: translateY(-2px);
     box-shadow: var(--shadow-sm);
 }

 .language-button.active {
     background: var(--gradient-primary);
     color: white;
     border-color: transparent;
 }

 .footer-text {
     font-size: var(--text-sm);
     color: var(--color-base-text-muted);
 }

 .footer-text a {
     color: var(--color-accent-1);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-text a:hover {
     color: var(--color-accent-2);
 }

 /* ============================================
ACCESSIBILITY
============================================ */
 :focus-visible {
     outline: 3px solid var(--color-accent-1);
     outline-offset: 2px;
     border-radius: var(--radius-sm);
 }

 .skip-link {
     position: absolute;
     top: -40px;
     left: 0;
     background: var(--color-accent-1);
     color: white;
     padding: var(--space-sm) var(--space-md);
     text-decoration: none;
     border-radius: var(--radius-sm);
     z-index: 10000;
     font-weight: var(--weight-semibold);
 }

 .skip-link:focus {
     top: 0;
 }

 @media (prefers-reduced-motion: reduce) {

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

 /* ============================================
RESPONSIVE BREAKPOINTS
============================================ */
 @media (max-width: 768px) {
     .hero {
         min-height: 60vh;
         padding: var(--space-3xl) var(--space-md);
     }

     .hero-svg {
         width: 250px;
         height: 250px;
     }

     .navbar-content {
         flex-direction: column;
         align-items: flex-start;
         gap: var(--space-sm);
     }

     .media-list {
         grid-template-columns: 1fr;
         gap: var(--space-lg);
     }

     .content-section {
         padding: var(--space-2xl) var(--space-md);
     }
 }

 @media (min-width: 1025px) {
     .media-list {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1441px) {
     .media-list {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 /* ============================================
DECORATIVE ELEMENTS
============================================ */
 .section-divider {
     width: 60px;
     height: 4px;
     background: var(--gradient-primary);
     margin: var(--space-2xl) auto;
     border-radius: var(--radius-full);
 }
