:root {
    /* Colors - Soft Monochrome */
    --color-bg: #fdfcfc;
    --color-text: #0a0a0a;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-white: #fdfcfc;
    --color-accent: #0a0a0a;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Responsive Spacing Scale */
    --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
    --space-sm: clamp(0.5rem, 1vw, 1rem);
    --space-md: clamp(1rem, 2vw, 2rem);
    --space-lg: clamp(2rem, 4vw, 4rem);
    --space-xl: clamp(4rem, 6vw, 8rem);
    --space-2xl: clamp(6rem, 8vw, 12rem);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ================================ */
/* SPA VIEW SWITCHING */
/* ================================ */
.spa-view {
    display: none;
    opacity: 0;
}

.spa-view.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.4s ease-out;
}

.spa-view.leaving {
    display: block;
    animation: fadeOut 0.3s ease-in forwards;
}

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

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

/* PISTE 2026 - Black transition with longer duration */
#view-piste-2026.active {
    animation: fadeInBlack 0.8s ease-out;
}

#view-piste-2026.leaving {
    animation: fadeOutBlack 0.5s ease-in forwards;
}

@keyframes fadeInBlack {
    0% { opacity: 0; }
    30% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeOutBlack {
    from { opacity: 1; }
    to { opacity: 0; }
}

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

/* NATIVE SCROLL - Lenis removed */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html, body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior: none;
}

#scroll-container {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease-premium);
}

a:hover {
    opacity: 0.7;
}

/* Cursor */
*, *::before, *::after { cursor: default; }
a, button, .cta-ticket, .nav-btn, .btn-tickets { cursor: pointer; }

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

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

/* ================================ */
/* GLOBAL NOISE */
/* ================================ */
.global-noise {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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");
}

/* ================================ */
/* INTRO OVERLAY */
/* ================================ */
.intro-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video {
    width: 50%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    transform: translateX(-3.5vw);
}

.intro-video::-webkit-media-controls {
    display: none !important;
}

.intro-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

@media (max-width: 767px) {
    .intro-video {
        width: 70%;
    }
}

/* ================================ */
/* HEADER */
/* ================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    background: rgb(253, 252, 252);
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease-premium);
}

.main-header.is-visible {
    transform: translateY(0);
}

/* Dark header for PISTE 2026 */
.main-header.header-dark {
    background: #0a0a0a;
}

.main-header.header-dark .nav-svg {
    filter: invert(1) brightness(2);
}

.main-header.header-dark .piste-logo-img {
    filter: invert(1) brightness(2);
}

.main-header.header-dark .cta-ticket {
    background: var(--color-bg);
    color: var(--color-text);
}

.main-header.header-dark .cta-ticket:hover {
    background: transparent;
    color: var(--color-bg);
    box-shadow: inset 0 0 0 1px var(--color-bg);
}

.main-header.header-dark .social-link {
    color: var(--color-bg);
}

.main-header.header-dark .hamburger-line {
    background: var(--color-bg);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navigation */
.nav-main {
    display: flex;
    gap: var(--space-md);
}

.nav-btn {
    position: relative;
    padding: var(--space-xs) 0;
}

/* Navigation SVG Buttons */
.nav-svg {
    height: clamp(36px, 3.2vw, 65px);
    width: auto;
    display: block;
}

/* Section Navigation Buttons (Image Grid) */
/* .section-nav-buttons now handled via utility classes in HTML */

/* Navigation SVG Buttons */
.nav-svg {
    height: clamp(36px, 3.2vw, 65px);
    width: auto;
    display: block;
}

/* Section Navigation Buttons (Image Grid) */
/* .section-nav-buttons now handled via utility classes in HTML */

.section-nav-btn {
    display: block;
    transition: filter 0.4s var(--ease-premium);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.15)); /* Weaker White Icon + White Glow */
    padding: 0;
}

.section-nav-btn:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255,255,255,0.5)); /* Moderate White Glow */
    padding: 0;
}

/* Apply transforms to SVG to avoid conflicting with container's layout transforms (centering) */
.section-nav-svg {
    height: clamp(92px, 11.5vw, 184px);
    width: auto;
    display: block;
    transition: transform 0.4s var(--ease-premium);
}

/* Hover scale removed as requested */

/* Make PISTE 2025 button bigger via SVG size (preserves container positioning) */
.section-nav-btn[href="#piste-2025"] .section-nav-svg {
    height: clamp(106px, 13.2vw, 212px); /* +15% larger */
}

/* Move PISTE 2026 button up slightly */
.section-nav-btn[href="#piste-2026"] {
    margin-top: -0.75%;
}

.section-nav-svg {
    height: clamp(92px, 11.5vw, 184px);
    width: auto;
    display: block;
}

.nav-btn[data-section="piste-2025"] .nav-svg {
    transform: scale(1.15);
    transform-origin: center;
}

/* individual icon adjustments handled below */

/* Header Logo */
.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.piste-logo-handwritten,
.piste-logo-img {
    width: clamp(100px, 8.5vw, 160px);
    height: auto;
    display: block;
}

.logo-link {
    display: block;
    padding: 10px 20px;
    margin: -10px -20px;
    transition: opacity 0.3s var(--ease-out);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-link:active {
    transform: translateY(0);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cta-ticket {
    background: var(--color-text);
    color: var(--color-bg);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.4s var(--ease-out), background 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.cta-ticket:hover {
    background: transparent;
    color: var(--color-text);
    box-shadow: inset 0 0 0 1px var(--color-text);
}

/* ================================ */
/* MOBILE NAVIGATION */
/* ================================ */

/* Hamburger Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 8px;
    z-index: 1001;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--ease-premium);
    border-radius: 1px;
}

/* Hamburger to X animation */
.mobile-menu-btn.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-premium);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-panel.is-open {
    transform: translateX(0);
}

.mobile-nav-link {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-panel.is-open .mobile-nav-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-panel.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-panel.is-open .mobile-nav-cta { transition-delay: 0.3s; }

.mobile-nav-svg {
    height: 48px;
    width: auto;
    filter: invert(0);
}

.mobile-nav-cta {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.mobile-nav-panel.is-open .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-cta:hover {
    background: var(--color-text-light);
}

/* Header Dark Mode Overrides (Mobile Panel) */
.header-dark .mobile-nav-panel {
    background: #0a0a0a;
    box-shadow: -10px 0 30px rgba(255, 255, 255, 0.05);
}

.header-dark .mobile-nav-svg {
    filter: invert(1);
}

.header-dark .mobile-nav-cta {
    background: var(--color-bg);
    color: var(--color-text);
}

.header-dark .mobile-nav-cta:hover {
    background: #e5e5e5;
}

/* Invert social icons in mobile menu */
.header-dark .mobile-nav-panel .text-primary {
    color: var(--color-bg) !important;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Show hamburger on mobile */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .cta-ticket {
        display: none;
    }
    
    .social-link {
        display: none;
    }
}

/* ================================ */
/* HERO SECTION */
/* ================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
}

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

.title-line.accent {
    font-style: italic;
}

/* ================================ */
/* PISTE 2025 SECTION */
/* ================================ */
.section-2025 {
    padding-top: var(--space-2xl);
}

/* Full Bleed Images */
.full-bleed-image {
    margin: var(--space-xl) 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.full-bleed-image.no-margin {
    margin: 0 !important;
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.6s ease;
}

/* Mobile: Full-viewport images like hero section */
@media (max-width: 767px) {
    .image-container {
        height: 80vh;
        overflow: hidden;
    }
    
    .cover-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important; /* Disable any parallax transforms */
    }
    
    /* Disable data-speed parallax effects on mobile */
    [data-speed] {
        transform: none !important;
    }
}

.image-container:hover .cover-image {
    filter: grayscale(0%);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    pointer-events: none;
}

.overlay-text {
    color: white;
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    line-height: 1.8;
}

.image-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    width: max-content;
}

/* New helper class for absolute positioning */
.credit-absolute-bottom {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 20;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    pointer-events: none;
}

.credit-absolute-bottom.right {
    left: auto;
    right: 1rem;
    text-align: right;
}

/* Piste 2026 Video Gradient Mask */
.video-gradient-mask {
    grid-area: 1 / 1;
    z-index: 10; /* Ensure on top of video (z-index: 2) */
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* 
       Two Linear Gradients:
       1. Top -> Bottom (Black -> Transparent)
       2. Bottom -> Top (Black -> Transparent)
       Reaching approx 25-30% inwards to frame the SVG/Video center.
    */
    background: 
        linear-gradient(to bottom, #0a0a0a 0%, transparent 30%),
        linear-gradient(to top, #0a0a0a 0%, transparent 30%);
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.video-gradient-mask.is-hidden {
    opacity: 0;
}



/* Content Blocks */
.content-block {
    margin: var(--space-xl) 0;
    max-width: 800px;
}

.block-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.block-text {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* Winners */
.winners-block {
    margin: var(--space-xl) 0;
    max-width: 900px;
}

.winner-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    align-items: baseline;
}

.winner-place {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
}

.winner-prize {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.winner-name {
    font-weight: 500;
}

/* Awards */
.awards-block {
    margin: var(--space-lg) 0;
    max-width: 800px;
}

.award-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.award-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
}

.award-prize {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.award-winner {
    font-weight: 500;
}

/* Sponsors */
.sponsors-section {
    margin: 0 0 var(--space-2xl);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-2xl);
}

.sponsors-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    text-align: center;
    font-weight: 700;
    color: var(--color-text);
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.sponsor-logo {
    padding: var(--space-sm) var(--space-md);
    background: transparent; 
    font-size: 0.75rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 60px;
    transition: all 0.3s ease;
}

.sponsor-logo-img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s var(--ease-out);
}

.sponsor-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-logo:hover {
    background: rgba(0,0,0,0.06);
}

.sponsor-logo.placeholder {
    font-style: italic;
}

/* ================================ */
/* PISTE 2026 SECTION - ARTSY TYPOGRAPHY */
/* ================================ */
.section-2026 {
    padding: 0;
    background: #0a0a0a;
    color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* PISTE 2026 Layout Restructure */
.viewport-section {
    height: 100vh; /* Strict full height */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
    scroll-snap-align: start;
}

.short-viewport-70 {
    height: 70vh !important;
    min-height: auto !important;
    padding-bottom: 0 !important;
}

/* Theme Reveal (Handwriting) specific override */
.theme-reveal-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vh 0; /* Use padding instead of negative margin for spacing */
    box-sizing: border-box;
    position: relative;
    z-index: 10; /* Ensure it stays on top if overlapping */
    pointer-events: none; /* Let scroll pass through */
}

.theme-reveal-container .theme-animation-wrapper {
    pointer-events: auto;
}

/* Theme intro label - standard font, bold */
.theme-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(3rem, 4vw, 5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-bg);
}

/* Theme intro label ALT - italic version for comparison */
.theme-label-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%; /* Changed from 100vh to fit container */
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(5vw, 6.2vw, 8.4vw);
    font-style: italic;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-bg);
}

/* Main typography - screen-spanning, CAPS with handwriting */
.theme-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Handwriting text container */
.theme-word-container {
    position: relative;
    display: inline-block;
}

/* Handwriting text - uses Homemade Apple font */
.theme-word-text {
    font-family: 'Homemade Apple', cursive;
    font-size: clamp(8vw, 12vw, 16vw);
    font-weight: 400;
    color: var(--color-bg);
    white-space: nowrap;
    display: block;
}

/* Reveal mask - clips from left to right */
.theme-word-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-text); /* Same as section background */
    transform-origin: right center;
    /* Initial state: covers all text */
}

/* Decorative accent elements */
.theme-accent {
    position: absolute;
    font-family: var(--font-body);
    font-size: clamp(0.6rem, 0.8vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.25;
    color: #f5f5f5;
}

.theme-accent-left {
    bottom: 15vh;
    left: 6vw;
}

.theme-accent-right {
    bottom: 15vh;
    right: 6vw;
    font-style: italic;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .theme-label {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .theme-title {
        font-size: clamp(22vw, 28vw, 35vw);
        transform: none;
    }
    
    .theme-accent {
        display: none;
    }
}

/* Event Details */
.event-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    text-align: center;
}

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

.detail-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem; /* +10% */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-bg);
    opacity: 1;
}

.detail-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-style: italic;
    line-height: 1.2;
}
/* REDACTED TOGGLE LOGIC */
/* When BODY has .redacted-mode: switch details and hide ticket buttons */
body.redacted-mode .event-details .value-real {
    display: none;
}
body.redacted-mode .event-details .value-redacted {
    display: inline-block !important;
}

/* Hide ticket buttons in redacted mode */
body.redacted-mode .cta-ticket,
body.redacted-mode .mobile-nav-cta,
body.redacted-mode .btn-tickets {
    display: none !important;
}

/* When BODY DOES NOT have .redacted-mode, show real, hide redacted (Default behavior of elements remains, just ensure redacted spans are hidden) */
body:not(.redacted-mode) .event-details .value-real {
    display: block;
}
body:not(.redacted-mode) .event-details .value-redacted {
    display: none !important;
}

.redacted-text {
    display: inline-block;
    background-color: #fdfcfc;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.1em 0.4em;
    transform: skewX(-10deg);
    border: 1px solid rgba(255,255,255,0.5);
    /* Slight grunge texture hint via box-shadow */
    box-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

/* Header Dark Mode Overrides (PISTE 2026) */
.header-dark .mobile-menu-btn .hamburger-line {
    background-color: var(--color-bg);
}
.header-dark .site-logo a {
    color: var(--color-bg); /* Ensure logo inverts too if text-based */
}

.btn-tickets {
    display: inline-block;
    background: var(--color-bg);
    color: var(--color-text);
    padding: var(--space-sm) var(--space-lg);
    font-size: 1.1rem; /* +10% */
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: opacity 0.4s var(--ease-out), background 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    margin-top: var(--space-md);
}

.btn-tickets:hover {
    opacity: 1;
}

/* Designers */
.designers-section {
    padding: var(--space-2xl) 0;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

.designers-list {
    max-width: 600px;
    margin: 0 auto;
}

.designer-item {
    display: flex;
    flex-direction: column;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.designer-name {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.collection-name {
    font-family: var(--font-heading);
    font-style: italic;
    opacity: 0.7;
}

/* 2026 Sponsors */
.sponsors-2026 .sponsors-title {
    color: rgba(255,255,255,0.5);
}

.sponsors-2026 .sponsor-logo {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
}

/* ================================ */
/* TEAM SECTION */
/* ================================ */
.section-team {
    padding: var(--space-2xl) 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.section-title-svg {
    height: clamp(100px, 11vw, 180px);
    width: auto;
    display: block;
    margin: 0 auto;
}

.team-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.team-name {
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.team-role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ================================ */
/* CONTACT SECTION */
/* ================================ */
.section-contact {
    padding: var(--space-2xl) 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.contact-info {
    margin-top: var(--space-lg);
}

.contact-org {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.contact-email,
.contact-phone {
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.contact-email a,
.contact-phone a {
    color: var(--color-text);
    font-weight: 500;
}

.contact-person {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Footer Logo */
.footer-logo {
    width: clamp(120px, 10vw, 165px);
    height: auto;
    filter: invert(1) brightness(200%);
}

/* ================================ */
/* RESPONSIVE */
/* ================================ */

/* Mobile Styles */
@media (max-width: 767px) {
    /* Header */
    .main-header {
        padding: var(--space-xs) var(--space-sm);
    }

    .nav-main {
        display: none;
    }

    .header-logo {
        position: static;
        transform: none;
    }
    
    .piste-logo-img {
        width: 100px;
    }

    .header-bg-logo {
        display: none;
    }
    
    /* Hero Mobile */
    .hero-title-mobile {
        font-size: 2.5rem !important;
    }
    
    /* Image Grid */
    .image-container {
        min-height: 50vh;
    }
    
    /* Text Overlays - Smaller, Centered */
    .text-reveal,
    .text-reveal-bottom {
        padding: 1rem;
    }
    
    .text-reveal > div,
    .text-reveal-bottom > div {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }
    
    /* Winners */
    .winner-item {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
    
    /* Viewport Sections (PISTE 2026) */
    .viewport-section {
        min-height: 100vh; /* Restore full height for centering */
        height: auto;
        padding: 4rem 1rem;
    }
    
    .theme-label,
    .theme-label-alt {
        font-size: 10vw !important; /* Larger text */
        line-height: 1.2 !important;
        padding: 0 1rem;
        height: 100% !important; /* Ensure flex centering works */
    }
    
    .theme-animation-wrapper {
        width: 95vw;
    }

    /* Fix spacing for Theme Reveal on Mobile */
    .theme-reveal-container {
        height: auto !important;
        min-height: 80vh; /* Increase height to ensure scroll trigger works */
        margin-top: 0 !important;
        padding: 4rem 0;
        display: flex !important; /* Keep flex for centering */
        justify-content: center;
        align-items: center;
    }
    
    /* Event Details */
    .event-details {
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .detail-value {
        font-size: 2.5rem;
    }
    
    .detail-label {
        font-size: 0.9rem;
    }
    
    /* Designers List */
    .designers-section {
        padding: 2rem 1rem;
    }
    
    /* Tiim Section */
    .section-team {
        padding: 3rem 0;
    }
    
    .section-title-svg {
        height: 80px;
    }
    
    /* Footer */
    footer .grid {
        gap: 2rem !important;
    }
    
    .footer-logo {
        width: 120px;
    }
    
    .lg-social-offset {
        transform: none !important;
    }
    
    /* Sponsors */
    .sponsors-grid {
        gap: 0.5rem;
    }
    
    .sponsor-logo-img {
        max-width: 100px;
        max-height: 60px;
    }
    
    /* Force stack images on mobile */
    .mobile-stack-images {
        flex-direction: column !important;
    }
    
    .mobile-stack-images img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Tablet Breakpoint */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-svg {
        height: clamp(32px, 4vw, 48px);
    }
    
    .piste-logo-img {
        width: clamp(90px, 10vw, 130px);
    }
}

/* Wide Screen Breakpoint */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
}

/* Ultra-wide Screen Breakpoint */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
    
    :root {
        --space-xl: 10rem;
        --space-2xl: 16rem;
    }
}
.theme-video-container { width: 100%; max-width: 800px; margin: 0 auto; } 
/* Social Icons Offset Fix */
@media (min-width: 1024px) {
    .lg-social-offset {
        transform: translateX(clamp(100px, 14vw, 225px)) !important;
    }
}

/* Theme Animation Wrapper */
.theme-animation-wrapper {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    aspect-ratio: 16 / 9; /* Adjust based on actual asset ratio if needed, or let content dictate */
    display: grid; /* Use grid for easier stacking */
    place-items: center;
}

.theme-final-svg {
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
    opacity: 0; /* Hidden initially */
    transition: opacity 0.5s ease-out;
}

.theme-final-svg.is-visible {
    opacity: 1;
}

.theme-intro-video {
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.theme-intro-video.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ÜLEMINEK VIDEO */
.theme-video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.uleminek-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Hide scrollbar for mobile carousel */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

/* Frame Effect for Buttons */
.nav-btn-frame::before {
    content: '';
    position: absolute;
    inset: -15px; /* Distance from button */
    border: 1px solid rgba(255,255,255,0.4);
    pointer-events: none;
    transition: all 0.4s var(--ease-premium);
    
    /* Cutout corner logic - defaulting to bottom-right cut */
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        0 100%
    );
}

.nav-btn-frame:hover::before {
    border-color: rgba(255,255,255,0.9);
    inset: -20px; /* Expand on hover */
    box-shadow: 0 0 15px rgba(255,255,255,0.2); /* Add glow to border itself */
}

/* Custom Cursor */
/* Hide default cursor globally */
body, a, button, input {
    cursor: none;
}


.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: transparent; /* No fill */
    border: 2px solid white; /* Ring */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    /* Removed width/height transition for now, handled by GSAP for stretch */
}

@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}

/* Hover state for links - REMOVED EXPANSION as requested */
/* We can add a subtle border color change or active state later if needed */
/* body.is-hovering .custom-cursor { ... } */

