/* ============================================
   PHYOE DHANA - Documentary Filmmaker Portfolio
   Revolutionary & Cinematic Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Cinematic Dark Theme */
    --color-bg-primary: #0a0a0b;
    --color-bg-secondary: #111113;
    --color-bg-tertiary: #1a1a1d;
    --color-bg-card: #151517;
    
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #a1a1a6;
    --color-text-muted: #6e6e73;
    
    --color-accent: #c9a227;
    --color-accent-light: #d4b84a;
    --color-accent-dark: #a68820;
    
    --color-red: #dc3545;
    --color-red-glow: rgba(220, 53, 69, 0.3);
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;
    
    /* Z-index */
    --z-back: -1;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
    --z-preloader: 9999;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-bg-secondary);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

/* Selection */
::selection {
    background: var(--color-accent);
    color: var(--color-bg-primary);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.film-reel {
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-full);
    position: relative;
    animation: spin 2s linear infinite;
}

.reel-hole {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    top: 50%;
    left: 50%;
}

.reel-hole:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-25px); }
.reel-hole:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg) translateY(-25px); }
.reel-hole:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg) translateY(-25px); }
.reel-hole:nth-child(4) { transform: translate(-50%, -50%) rotate(180deg) translateY(-25px); }
.reel-hole:nth-child(5) { transform: translate(-50%, -50%) rotate(240deg) translateY(-25px); }
.reel-hole:nth-child(6) { transform: translate(-50%, -50%) rotate(300deg) translateY(-25px); }

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-text {
    margin-top: var(--space-lg);
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.2em;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-full);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: var(--z-fixed);
    transition: background var(--transition-base), padding var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) var(--space-lg);
}

.nav-logo {
    position: relative;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

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

.nav-link.support-link {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-link.support-link::after {
    display: none;
}

.nav-link.support-link:hover {
    background: var(--color-accent-light);
    color: var(--color-bg-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-base);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-back);
}

.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg-primary) 70%);
}

.film-strip {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 20px,
        rgba(201, 162, 39, 0.1) 20px,
        rgba(201, 162, 39, 0.1) 40px
    );
    opacity: 0.5;
}

.film-strip-left { left: 5%; }
.film-strip-right { right: 5%; }

.hero-content {
    text-align: center;
    z-index: var(--z-normal);
    padding: var(--space-lg);
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-subtitle .line {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    transform: translateY(100%);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.word[data-delay="0.1"] {
    animation-delay: 0.1s;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--color-accent);
}

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

.btn-ghost:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0%, 100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% { 
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.title-accent {
    color: var(--color-accent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    padding: var(--space-md);
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--color-accent);
    border-style: solid;
}

.frame-corner.top-left {
    top: 0; left: 0;
    border-width: 2px 0 0 2px;
}

.frame-corner.top-right {
    top: 0; right: 0;
    border-width: 2px 2px 0 0;
}

.frame-corner.bottom-left {
    bottom: 0; left: 0;
    border-width: 0 0 2px 2px;
}

.frame-corner.bottom-right {
    bottom: 0; right: 0;
    border-width: 0 2px 2px 0;
}

.about-image {
    aspect-ratio: 3/4;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
}

.camera-icon {
    width: 60%;
    height: auto;
    color: var(--color-text-muted);
    opacity: 0.3;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

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

.badge-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--color-bg-primary);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.about-text {
    padding-top: var(--space-lg);
}

.quote-block {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    width: 30px;
    height: 30px;
    color: var(--color-accent);
    opacity: 0.5;
}

.quote {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text-primary);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-bg-tertiary);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.about-bg-text {
    position: absolute;
    bottom: 10%;
    right: -5%;
    font-family: var(--font-display);
    font-size: 20vw;
    font-weight: 700;
    color: var(--color-bg-secondary);
    letter-spacing: 0.1em;
    user-select: none;
    pointer-events: none;
    z-index: var(--z-back);
}

/* ============================================
   WORKS SECTION
   ============================================ */
.works {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.works-grid {
    display: grid;
    gap: var(--space-xl);
}

.work-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-slow);
}

.work-card:hover {
    transform: translateY(-10px);
}

.work-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.work-visual {
    position: relative;
}

.work-thumbnail {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.covid-project {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.dream-project {
    background: linear-gradient(135deg, #2d132c, #801336, #c72c41);
}

.visual-element {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.year-display {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.1em;
}

.abstract-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.3;
}

.covid-project .shape-1 {
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    top: 20%;
    left: 20%;
    animation: float 8s ease-in-out infinite;
}

.covid-project .shape-2 {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-accent);
    bottom: 30%;
    right: 25%;
    animation: float 6s ease-in-out infinite reverse;
}

.covid-project .shape-3 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    top: 50%;
    right: 40%;
    animation: float 7s ease-in-out infinite;
}

.dream-project .shape-1 {
    width: 120px;
    height: 120px;
    border: 2px solid var(--color-accent);
    top: 15%;
    right: 20%;
    animation: float 7s ease-in-out infinite;
}

.dream-project .shape-2 {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    bottom: 25%;
    left: 20%;
    animation: float 9s ease-in-out infinite reverse;
}

.dream-project .shape-3 {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    top: 40%;
    left: 35%;
    animation: float 5s ease-in-out infinite;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.work-card:hover .thumbnail-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform var(--transition-base);
}

.work-card:hover .play-icon {
    transform: scale(1);
}

.play-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-bg-primary);
    margin-left: 4px;
}

.work-year {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    background: rgba(0, 0, 0, 0.5);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.work-info {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.work-type,
.work-parts {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-sm);
}

.work-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.work-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.tag {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: var(--color-bg-tertiary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.works-bg-element {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    color: var(--color-bg-tertiary);
    opacity: 0.5;
    animation: spin 60s linear infinite;
}

/* ============================================
   ONGOING PROJECT SECTION
   ============================================ */
.ongoing {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1d, #0a0a0b);
}

.ongoing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-back);
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
}

.lines-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
    );
}

.section-header.light .section-number,
.section-header.light .title-accent {
    color: var(--color-red);
}

.ongoing-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ongoing-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--color-red);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--color-red);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 var(--color-red-glow);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 0 15px transparent;
        opacity: 0.7;
    }
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-red);
}

.ongoing-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
}

.ongoing-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

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

.meta-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.meta-value {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-text-primary);
}

.ongoing-synopsis {
    background: var(--color-bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.ongoing-synopsis h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.ongoing-synopsis p {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.ongoing-synopsis em {
    color: var(--color-text-primary);
    font-style: italic;
}

.ongoing-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.note-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.ongoing-note p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.ongoing-note strong {
    color: var(--color-accent);
}

.ongoing-visual {
    margin-top: var(--space-xl);
}

.camera-viewfinder {
    width: 300px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    border: 2px solid var(--color-text-muted);
    border-radius: var(--radius-sm);
}

.viewfinder-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--color-red);
    border-style: solid;
}

.viewfinder-corner.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.viewfinder-corner.tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.viewfinder-corner.bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.viewfinder-corner.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.viewfinder-center {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.recording-dot {
    width: 10px;
    height: 10px;
    background: var(--color-red);
    border-radius: var(--radius-full);
    animation: pulse 1.5s ease-in-out infinite;
}

.viewfinder-center span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-red);
    letter-spacing: 0.1em;
}

.viewfinder-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
}

.viewfinder-grid::before,
.viewfinder-grid::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
}

.viewfinder-grid::before {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.viewfinder-grid::after {
    width: 100%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.support {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.support-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.support-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.support-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.feature span {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.cta-card {
    background: var(--color-bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-bg-tertiary);
}

.cta-visual {
    margin-bottom: var(--space-lg);
}

.heart-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.heart-svg {
    width: 100%;
    height: 100%;
}

.heart-path {
    fill: var(--color-accent);
    animation: heartbeat 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.cta-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.btn-support {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border: none;
    width: 100%;
    justify-content: center;
}

.btn-support:hover {
    background: var(--color-accent-light);
}

.support-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

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

.footer-brand {
    margin-bottom: var(--space-xl);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.footer-quote {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    padding: var(--space-lg);
    border-top: 1px solid var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-bg-tertiary);
}

.footer-quote p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-secondary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.equipment-credit {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.equipment-credit a {
    color: var(--color-accent);
    transition: color var(--transition-base);
}

.equipment-credit a:hover {
    color: var(--color-accent-light);
}

.footer-film-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-accent) 0px,
        var(--color-accent) 30px,
        transparent 30px,
        transparent 50px
    );
    opacity: 0.3;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
}

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

.back-to-top:hover {
    background: var(--color-accent-light);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--color-bg-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .about-content {
        gap: var(--space-xl);
    }
    
    .work-card-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .work-card-inner {
        grid-template-columns: 1fr;
    }
    
    .work-thumbnail {
        aspect-ratio: 16/9;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .cta-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    /* Hide custom cursor on mobile */
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    a, button {
        cursor: pointer;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition-slow);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: calc(var(--z-fixed) + 1);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hero */
    .hero-subtitle {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-subtitle .line {
        width: 40px;
    }
    
    .film-strip {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* About */
    .floating-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    /* Works */
    .work-info {
        padding: var(--space-lg);
    }
    
    .work-meta {
        flex-wrap: wrap;
    }
    
    /* Ongoing */
    .ongoing-meta {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .camera-viewfinder {
        width: 100%;
        max-width: 300px;
    }
    
    /* Support */
    .support-features {
        gap: var(--space-sm);
    }
    
    .back-to-top {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .quote {
        font-size: 1.2rem;
    }
    
    .work-title {
        font-size: 1.4rem;
    }
    
    .ongoing-title {
        font-size: 2rem;
    }
    
    .ongoing-synopsis p {
        font-size: 1.1rem;
    }
    
    .ongoing-note {
        flex-direction: column;
        text-align: center;
    }
    
    .note-icon {
        margin: 0 auto;
    }
}

/* ============================================
   HERO ENHANCEMENTS
   ============================================ */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: grayscale(50%);
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.hero-badge span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-badge strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
}

.hero-social {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-text-muted);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-5px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   ABOUT TIMELINE
   ============================================ */
.about-timeline {
    margin-bottom: var(--space-xl);
    padding-left: var(--space-lg);
    border-left: 2px solid var(--color-bg-tertiary);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-lg) - 6px);
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--color-bg-tertiary);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-full);
}

.timeline-item.highlight::before {
    background: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.timeline-item.highlight p {
    color: var(--color-text-primary);
}

/* ============================================
   MUSIC VIDEOS SECTION
   ============================================ */
.music-videos {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-sm);
}

/* Embedded YouTube Video Grid */
.mv-embed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.mv-embed-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.mv-embed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mv-embed-card.featured-large {
    grid-column: span 2;
}

.mv-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--color-bg-tertiary);
}

.mv-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mv-embed-info {
    padding: var(--space-lg);
}

.mv-embed-info .mv-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.mv-embed-info .mv-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Legacy card styles for backwards compatibility */
.mv-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.mv-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

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

.mv-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mv-thumbnail-bg {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow);
}

.mv-card:hover .mv-thumbnail-bg {
    transform: scale(1.1);
}

.spring-mv {
    background: linear-gradient(135deg, #2d5a27, #4a7c43, #6b9e64);
}

.fascist-mv {
    background: linear-gradient(135deg, #4a1c1c, #6b2d2d, #8c3e3e);
}

.paris-mv {
    background: linear-gradient(135deg, #1c3a4a, #2d5a6b, #3e7a8c);
}

.mv-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mv-card:hover .mv-play-overlay {
    opacity: 1;
}

.mv-play-btn {
    width: 70px;
    height: 70px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform var(--transition-base);
}

.mv-card:hover .mv-play-btn {
    transform: scale(1);
}

.mv-play-btn svg {
    width: 28px;
    height: 28px;
    color: var(--color-bg-primary);
    margin-left: 4px;
}

.mv-info {
    padding: var(--space-lg);
}

.mv-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    background: rgba(201, 162, 39, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.mv-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.mv-artist {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.mv-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.mv-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-tertiary);
}

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

.count-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.count-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-large {
    padding: var(--space-lg) var(--space-xl);
    font-size: 1rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--color-text-primary);
}

.gallery-film-strip {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(90deg);
    width: 400px;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-accent) 0px,
        var(--color-accent) 20px,
        transparent 20px,
        transparent 35px
    );
    opacity: 0.1;
}

/* ============================================
   ONGOING SECTION ENHANCEMENTS
   ============================================ */
.ongoing-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(70%);
}

/* ============================================
   SUPPORT SECTION ENHANCEMENTS
   ============================================ */
.support-info {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
}

.support-info p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.support-info ul {
    list-style: none;
    padding-left: var(--space-md);
}

.support-info li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.support-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.donation-options {
    margin: var(--space-lg) 0;
    text-align: center;
}

.donation-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.donation-amounts {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.donation-amounts span {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.footer-founder {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-top: var(--space-xs);
}

.footer-pr-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.pr-initials-sm {
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 0.2em;
    padding-right: var(--space-sm);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pr-text-sm {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-text-muted);
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid var(--color-text-muted);
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.lightbox-close:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    margin-top: var(--space-lg);
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

/* ============================================
   THUMBNAIL IMAGE
   ============================================ */
.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   PROFILE PHOTO
   ============================================ */
.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   RESPONSIVE - MUSIC VIDEOS
   ============================================ */
@media (max-width: 1200px) {
    .mv-featured {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-embed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-embed-card.featured-large {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .mv-embed-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-embed-card.featured-large {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }
    
    .gallery-item.wide {
        grid-column: span 2;
        height: 250px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .mv-featured {
        grid-template-columns: 1fr;
    }
    
    .mv-embed-info .mv-title {
        font-size: 1.1rem;
    }
    
    .mv-embed-info {
        padding: var(--space-md);
    }
    
    .mv-cta {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .hero-social {
        gap: var(--space-sm);
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item {
        grid-column: span 1;
        height: 250px;
    }
    
    .about-timeline {
        padding-left: var(--space-md);
    }
    
    .timeline-item {
        padding-left: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: var(--space-xs) var(--space-md);
    }
    
    .count-number {
        font-size: 3rem;
    }
    
    .mv-title {
        font-size: 1.2rem;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   ENHANCED FILMMAKER VISUAL EFFECTS
   ============================================ */

/* Camera Flash */
.camera-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    pointer-events: none;
    opacity: 0;
    z-index: 9998;
}

.camera-flash.active {
    animation: flashBurst 0.5s ease forwards;
}

@keyframes flashBurst {
    0% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* Section Visibility Animations */
section {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop: animate sections */
@media (min-width: 769px) {
    section:not(.hero) {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    section.section-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section should be visible immediately */
.hero {
    opacity: 1;
    transform: none;
}

/* Image Reveal Effect */
.about-image {
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image.image-revealed::after {
    transform: scaleX(0);
}

/* Quote Animation */
.quote {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.quote.quote-visible,
.quote-block:hover .quote {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hero Badge */
.hero-badge.documentary-badge {
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 1s forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Viewfinder Overlay Responsive */
@media (max-width: 768px) {
    .viewfinder-overlay {
        display: none;
    }
    
    .letterbox {
        height: 5vh;
    }
    
    .letterbox-top,
    .letterbox-bottom {
        animation: none;
        height: 5vh;
    }
    
    .vf-rec,
    .vf-timecode {
        display: none;
    }
}

/* Film Border Effects */
.film-border-top,
.film-border-bottom {
    opacity: 0.5;
}

/* Enhanced Profile Photo Container */
.about-image img.profile-photo {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.about-image:hover img.profile-photo {
    transform: scale(1.03);
    filter: brightness(1.1) contrast(1.05);
}

/* Floating Elements Animation Enhancement */
.floating-badge {
    z-index: 10;
}

.floating-film-strip {
    z-index: 1;
}

/* Enhanced Work Cards */
.work-card {
    position: relative;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(201, 162, 39, 0.05) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: inherit;
}

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

/* Documentary Style Timeline Enhancement */
.timeline-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.timeline-item strong {
    color: var(--color-accent);
}

.timeline-item.highlight {
    background: rgba(201, 162, 39, 0.05);
    padding: var(--space-md);
    margin-left: calc(-1 * var(--space-md));
    border-radius: var(--radius-md);
}

/* Stat Items Enhancement */
.about-stats {
    margin-top: var(--space-xl);
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

/* Hero Film Decoration Mobile */
@media (max-width: 768px) {
    .hero-film-decoration {
        display: none;
    }
    
    .documentary-badge {
        flex-direction: column;
        text-align: center;
    }
}

/* Cinematic Frame Enhancement */
.cinematic-frame {
    background: var(--color-bg-tertiary);
}

/* Ensure profile image fills container */
.about-image {
    background: var(--color-bg-tertiary);
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Loading state for images */
.about-image img[src=""] {
    background: linear-gradient(
        135deg,
        var(--color-bg-secondary) 0%,
        var(--color-bg-tertiary) 50%,
        var(--color-bg-secondary) 100%
    );
    background-size: 200% 200%;
    animation: shimmerLoad 1.5s ease infinite;
}

@keyframes shimmerLoad {
    0% { background-position: -100% -100%; }
    100% { background-position: 200% 200%; }
}
