/* ==========================================================================
   Design System & Variable Declarations
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #080809;
    --bg-card: #121214;
    --bg-header: rgba(8, 8, 9, 0.8);
    --border-color: #1c1c1f;
    --border-hover: #333336;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --text-muted: #606065;
    
    --accent-gold: #C5A880;
    --accent-gold-hover: #e5c192;
    --accent-red: #ff3b30;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Layout */
    --max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    line-height: 1.6;
    position: relative;
}

body.lightbox-open {
    overflow: hidden;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #252528;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Common Layout Containers */
.section-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
}

/* ==========================================================================
   Typography & Buttons
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--text-secondary);
}

/* Interactive Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

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

/* ==========================================================================
   Navigation Header
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--accent-gold);
    margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 6px 0;
    position: relative;
}

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

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

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

/* Mobile Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #FFFFFF 0%, #B3B3B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(8, 8, 9, 0.1) 0%, rgba(8, 8, 9, 0.4) 90%);
    z-index: 1;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    color: var(--accent-gold);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.hero-scroll-indicator a:hover {
    color: var(--text-primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* ==========================================================================
   Work Portfolio Section (Grid, Cards, Badges)
   ========================================================================== */
.work-section {
    background-color: var(--bg-dark);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    gap: 24px;
}

/* Category Filters */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Work Grid System */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Project Card */
.project-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.project-card.filtered-out {
    display: none;
}

.project-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #16161a;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.project-thumbnail {
    position: absolute;
    top: -0.5px;
    left: -0.5px;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Hover Video Element */
.project-hover-video {
    position: absolute;
    top: -0.5px;
    left: -0.5px;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    object-fit: cover;
    opacity: 1;
    transition: transform var(--transition-smooth);
    z-index: 2;
}

.project-hover-video.loaded + .project-thumbnail {
    opacity: 0;
    transition: opacity 0s;
}

/* Hover Overlay & Play Icon */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 9, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.play-btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

/* Awards Badges on Cards */
.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.award-badge {
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

/* Project Card Interactions */
.project-card:hover .project-media {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-card:hover .project-thumbnail,
.project-card:hover .project-hover-video {
    transform: scale(1.05);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

/* Info Section of Card */
.project-info {
    margin-top: 16px;
    padding: 0 4px;
}

.project-client {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 4px 0 2px 0;
}

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

/* ==========================================================================
   Biography & Awards Section
   ========================================================================== */
.about-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.grid-two-cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
}

.bio-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.bio-text p.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.bio-fun-fact {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 24px;
}

.representation-box {
    margin-top: 40px;
    padding: 24px;
    border-left: 2px solid var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.02);
}

.representation-box h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.representation-box p {
    margin-bottom: 6px;
}

.representation-box a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    transition: var(--transition-fast);
}

.representation-box a:hover {
    color: var(--accent-gold);
}

/* Timeline Style Awards */
.awards-list {
    list-style: none;
    position: relative;
    padding-left: 24px;
    border-left: 1px solid var(--border-color);
}

.award-item {
    position: relative;
    margin-bottom: 40px;
}

.award-item:last-child {
    margin-bottom: 0;
}

.award-item::before {
    content: '';
    position: absolute;
    left: -29.5px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    border: 2px solid var(--bg-card);
    transition: var(--transition-fast);
}

.award-item:hover::before {
    transform: scale(1.4);
    background-color: var(--text-primary);
}

.award-year {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 4px;
}

.award-details strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.award-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ==========================================================================
   Contact Section & Interactive Forms
   ========================================================================== */
.contact-section {
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
    margin-top: 60px;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-card-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.info-card-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.info-card-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 4px;
    word-break: break-all;
}

/* Card Hovers */
a.info-card:hover {
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

a.info-card:hover .info-card-icon {
    transform: scale(1.1);
}

/* Interactive Form Layout */
.contact-form {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.1);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.main-footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-dark);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   Video Lightbox / Theater Modal
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 9, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2100;
}

.lightbox-close:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.lightbox-content-wrapper {
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    padding-right: 8px;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content-wrapper {
    transform: scale(1);
}

/* Custom scrollbar for credits wrapper */
.lightbox-content-wrapper::-webkit-scrollbar {
    width: 6px;
}
.lightbox-content-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
.lightbox-content-wrapper::-webkit-scrollbar-thumb {
    background: #333336;
    border-radius: 3px;
}
.lightbox-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

.lightbox-content {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.lightbox-credits-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
    color: var(--text-secondary);
}

.lightbox-credits-panel h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-award-modal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-credits-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
    font-size: 0.9rem;
    line-height: 1.5;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.modal-credits-content p {
    color: var(--text-secondary);
    margin: 0;
}

.modal-credits-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.video-container-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#lightbox-video-container {
    width: 100%;
    height: 100%;
}

#lightbox-video-container iframe,
#lightbox-video-container video.lightbox-native-video {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
    outline: none;
}

/* ==========================================================================
   Responsive Design Media Queries
   ========================================================================== */

/* Tablet Viewports */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .grid-two-cols {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .work-grid {
        gap: 30px;
    }
}

/* Mobile Viewports */
@media (max-width: 768px) {
    .section-container {
        padding: 60px 20px;
    }
    
    /* Navigation Bar Mobile Layout */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .main-header.menu-open {
        background-color: var(--bg-card);
    }
    
    /* Close toggle animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Adjustments */
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Work Grid Adjustments */
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        width: 100%;
        white-space: nowrap;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    .filter-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    /* Contact Form Adjustments */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Lightbox Credits Adjustments */
    .lightbox-credits-panel {
        padding: 20px;
    }
    .lightbox-credits-panel h4 {
        font-size: 1.25rem;
    }
    .modal-credits-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ==========================================================================
   Analogue Film Effects (Grain & 35mm Halation Glows)
   ========================================================================== */
.film-grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04; /* Zwiększone do 4% dla lepszej widoczności */
    pointer-events: none;
    z-index: 9999; /* Nad całą treścią strony i obrazkami */
}

.glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -2;
}

.analogue-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(150px);
    opacity: 0.15; /* Zwiększone do 15% dla lepszej widoczności */
    mix-blend-mode: screen;
}

.glow-1 {
    top: 20vh;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.4) 0%, rgba(230, 92, 0, 0) 70%);
}

.glow-2 {
    top: 120vh;
    left: -20%;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.35) 0%, rgba(255, 0, 0, 0) 70%);
}

.glow-3 {
    top: 250vh;
    right: -15%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, rgba(230, 92, 0, 0) 70%);
}
