@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300;400;700&display=swap');

@font-face {
    font-family: 'Stretch Pro';
    src: url('StretchPro.otf') format('opentype'),
        url('StretchPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #080808;
    --accent-color: #00ff66;
    /* Laser Green */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-alt: 'Space Grotesk', sans-serif;
    --font-stretch: 'Stretch Pro', sans-serif;
    --motion-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Background Gradients (Aura) */
.aura {
    position: fixed;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    pointer-events: none;
}

.aura-1 {
    top: -10vh;
    right: -10vw;
}

.aura-2 {
    bottom: -10vh;
    left: -10vw;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

nav.active {
    background: rgba(12, 12, 12, 0.7) !important;
}

.logo-small img {
    height: 35px;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    gap: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.4s var(--motion-ease);
}

.menu-toggle.active span {
    background: var(--accent-color);
}

.menu-toggle span:nth-child(2) {
    width: 18px;
    align-self: flex-end;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    width: 30px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    width: 30px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('Photos_radykalnie/webp/desktop/radykalni_2025_day2-71_54608261946_o.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 1s ease;
}

@media (max-width: 1024px) {
    .hero-bg {
        background-image: url('Photos_radykalnie/webp/mobile/radykalni_2025_day2-71_54608261946_o.webp');
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.loaded {
    opacity: 1;
}

/* @media (max-width: 1024px) {
    .hero-video {
        display: none;
    }
} */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.4), var(--bg-color));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    perspective: 2000px;
    /* Enhanced 3D space */
}

.hero-logo-large {
    max-width: 500px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 102, 0.1));
    will-change: transform, filter;
    transition: filter 0.2s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    perspective: 2500px;
    cursor: none;
    opacity: 1;
    /* Remove transition from transform to allow smooth 3D effect */
}

.hero p {
    margin-top: 30px;
    font-family: var(--font-alt);
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    text-transform: uppercase;
    will-change: transform;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    opacity: 0.8;
}

.hero-actions {
    margin-top: 50px;
    will-change: transform;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transition: all 0.5s var(--motion-ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: translateY(101%);
    transition: transform 0.5s var(--motion-ease);
    z-index: -1;
}

.btn-hero:hover {
    color: #000;
}

.btn-hero:hover::before {
    transform: translateY(0);
}

.btn-hero:hover {
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.3);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    will-change: transform;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Gallery Styling */
/* Gallery Styling (Horizontal Scroll) */
.gallery-sticky-wrapper {
    height: 400vh;
    /* Determines the scroll distance */
    position: relative;
    z-index: 10;
}

.gallery-section {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 0 60px;
    /* Remove 180px top padding */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-section .section-title {
    margin-bottom: 40px;
    /* Reduced from 80px */
}

/* Horizontal Track with Scatter */
.gallery-track {
    display: flex;
    gap: 8vw;
    /* More space for the scatter */
    width: fit-content;
    padding-left: 10vw;
    padding-right: 15vw;
    align-items: center;
    will-change: transform;
    height: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
    height: 55vh;
    aspect-ratio: 9/16;
    transition: all 0.5s var(--motion-ease);
    border: 1px solid transparent;
    will-change: transform, opacity;
}

/* Override aspect ratio for non-video items to maintain a consistent portrait look */
.gallery-item:not(.video-item) {
    aspect-ratio: 4/5;
}

/* Scattered Pattern Logic */
.gallery-item:nth-child(odd):not(.video-item) {
    margin-top: 15vh;
    transform: rotate(2deg);
}

.gallery-item:nth-child(even):not(.video-item) {
    margin-top: -15vh;
    transform: rotate(-2deg);
}

/* Break pattern every 3rd item */
.gallery-item:nth-child(3n):not(.video-item) {
    margin-top: 0;
    transform: rotate(1deg) scale(1.1);
    z-index: 2;
}

/* Specific Sizes for variety - overwrites defaults */
.gallery-item.large:not(.video-item) {
    height: 75vh;
    aspect-ratio: 4/5;
    margin-top: 5vh !important;
    transform: rotate(-1deg) !important;
    z-index: 3;
}

.gallery-item.wide {
    height: 45vh;
    aspect-ratio: 16/9;
    margin-top: 25vh !important;
    transform: rotate(2deg) !important;
}

/* Video item in gallery - force vertical aspect ratio (9:16) */
.gallery-item.video-item {
    aspect-ratio: 9/16 !important;
    background: #000;
    height: 75vh !important;
    width: calc(75vh * 9 / 16) !important;
    /* Explicit width for 9:16 ratio */
    max-width: 42vh !important;
    margin-top: 5vh !important;
    transform: rotate(-1deg) !important;
    z-index: 3;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/16;
    filter: grayscale(1) contrast(1.2);
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s var(--motion-ease);
}

.gallery-item.video-item:hover .gallery-video {
    transform: scale(1.1);
    filter: grayscale(0) contrast(1);
}

/* Image styles */
.map-placeholder img,
.map-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.5) contrast(1.2);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.map-placeholder:hover img,
.map-placeholder:hover video {
    filter: grayscale(0) brightness(0.7) contrast(1.1);
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(1) contrast(1.2);
    /* Stylized default */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
    content-visibility: auto;
}

/* Hover Interaction */
.gallery-item:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 255, 102, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0) contrast(1);
}

/* Kinetic Impact Section */
.impact-sticky-wrapper {
    height: 300vh;
    position: relative;
    z-index: 20;
}

.impact-section {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
}

.impact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 0.5s;
    z-index: 1;
}

@media (max-width: 1024px) {
    .impact-bg {
        background-image: url('Photos_radykalnie/webp/mobile/radykalni_2025_day2-76_54608572305_o.webp') !important;
    }
}

.impact-content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.impact-text-layer {
    font-family: var(--font-stretch);
    font-size: 8vw;
    font-weight: 400;
    /* Stretch Pro is usually bold by default */
    line-height: 0.9;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    /* Any thicker looks bad on some custom fonts */
    white-space: nowrap;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    text-shadow: 0 0 30px rgba(0, 255, 102, 0);
    transition: text-shadow 0.3s;
}

.impact-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 10;
}

.impact-message p {
    font-family: var(--font-stretch);
    font-size: 3.5vw;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

/* Photo Parallax Spacer */
.photo-parallax-spacer {
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin: 100px 0;
}

.parallax-img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
}

/* Section Common Styling */
section {
    padding: 180px 60px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    /* For bg containment */
}

/* Background Handling for Tickets & FAQ */
.section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    /* Delicate transparency */
    z-index: -1;
    filter: saturate(0);
    /* Black and white style */
}

@media (max-width: 1024px) {
    .tickets-section .section-bg {
        background-image: url('Photos_radykalnie/webp/mobile/radykalni_2025_day2-100_54607392242_o.webp') !important;
    }

    .faq-section .section-bg {
        background-image: url('Photos_radykalnie/webp/mobile/radykalni_2025_day2-105_54608571250_o.webp') !important;
    }
}

.tickets-section,
.faq-section {
    overflow: hidden;
    /* Contain the blur or scale */
}

.section-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent-color);
    margin-bottom: 80px;
    text-align: center;
    /* Dynamic Typography Base */
    transition: transform 0.4s var(--motion-ease);
}

/* 2026 Modern Cards */
.modern-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    padding: 40px;
    transition: border-color 0.5s, transform 0.5s var(--motion-ease);
    will-change: transform;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
}

.modern-card:hover {
    border-color: var(--accent-color);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: -0.05em;
    margin: 20px 0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.price-note {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-top: 20px;
    font-weight: 500;
}

/* Magnetic Button Wrapper */
.magnetic-wrap {
    display: inline-block;
    margin-top: auto;
}

.btn-modern {
    display: block;
    width: 100%;
    padding: 20px 40px;
    background: #fff;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 40px;
    transition: background 0.3s, transform 0.1s linear;
    position: relative;
    border-radius: 2px;
}

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

/* Dynamic Schedule Grid */
.schedule-section {
    position: relative;
    z-index: 2;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.day-column {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    transition: border-color 0.5s var(--motion-ease);
}

.day-column:hover {
    border-color: var(--accent-color);
}

.day-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.day-header.highlight .day-num {
    color: var(--accent-color);
}

.day-num {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.5;
    margin-bottom: 10px;
}

.day-date {
    font-size: 2.5rem;
    font-weight: 200;
}

.day-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.item-time {
    font-family: var(--font-alt);
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.item-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
    text-align: right;
}

@media (max-width: 1024px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .day-column {
        padding: 30px;
    }

    .day-date {
        font-size: 2rem;
    }
}

/* Map Placeholder */
.map-placeholder {
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    margin: 60px auto 0;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 100px 30px;
    }

    .spread-content h3 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 0.7rem;
        margin-bottom: 50px;
    }

    .price-tag {
        font-size: 4rem;
    }

    .schedule-item h3 {
        font-size: 1.8rem;
    }

    /* Hero Mobile Fixes */
    .hero-logo-large {
        max-width: 280px !important;
        margin-bottom: 20px;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important;
    }

    .hero-bg {
        transform: translate3d(0, 0, 0) scale(1.1) !important;
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-content {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero p {
        font-size: 0.75rem !important;
        letter-spacing: 0.3em !important;
        margin-top: 20px !important;
        padding: 0 20px;
    }

    .countdown-container {
        gap: 20px !important;
        margin-top: 40px !important;
    }

    .countdown-item .count {
        font-size: 2.2rem !important;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(8, 8, 8, 0.85);
        -webkit-backdrop-filter: blur(60px);
        backdrop-filter: blur(60px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3.5vh;
        clip-path: circle(0% at 90% 40px);
        width: 100%;
        height: 100vh;
        z-index: 1002;
        transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: none;
    }

    .nav-links.active {
        clip-path: circle(150% at 90% 40px);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s var(--motion-ease);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 0.3em;
    }

    /* Mobile Gallery Fix */
    .gallery-track {
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-item {
        height: 60vh;
        margin-top: 0 !important;
        transform: rotate(0) !important;
    }
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--motion-ease), visibility 0.8s;
}

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

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

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-100%);
    animation: loading 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes loading {
    to {
        transform: translateX(100%);
    }
}

/* Base Body hidden until loaded */
body:not(.loaded) {
    overflow: hidden;
}

/* Speakers Section */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.speaker-card {
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: border-color 0.5s var(--motion-ease);
}

.speaker-card:hover {
    border-color: var(--accent-color);
}

.speaker-img {
    height: 450px;
    overflow: hidden;
}

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 1s var(--motion-ease), filter 0.5s var(--motion-ease);
    image-rendering: -webkit-optimize-contrast;
    will-change: transform;
    content-visibility: auto;
}

.speaker-card:hover .speaker-img img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.speaker-info {
    padding: 30px;
}

.speaker-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.speaker-info p {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.faq-header {
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item.faq-open .faq-header h3 {
    color: var(--accent-color);
}

.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--motion-ease), padding 0.5s, opacity 0.5s;
    padding-bottom: 0;
    opacity: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.faq-open .faq-content {
    max-height: 500px;
    padding-bottom: 30px;
    opacity: 0.7;
}

/* Scroll Indicator */

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 1px solid var(--text-primary);
    border-radius: 10px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--text-primary);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .speaker-img {
        height: 350px;
    }
}

.social-links a {
    transition: color 0.3s var(--motion-ease), opacity 0.3s;
}

.social-links a:hover {
    color: var(--accent-color) !important;
    opacity: 1;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item .count {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-top: 10px;
}

/* Modals (General) */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 60px 20px;
}

.modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 60px;
}

.close-modal,
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

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

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.modal-img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(0.5);
}

.modal-info h2 {
    font-size: 3rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.modal-tag {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 30px;
}

.modal-bio {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

#lightbox-caption {
    margin-top: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    padding-top: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.modern-form .form-group {
    display: flex;
    flex-direction: column;
}

.modern-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: border-color 0.3s;
}

.modern-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}



/* Responsive for new elements */
@media (max-width: 1024px) {
    .countdown-container {
        gap: 20px;
    }

    .countdown-item .count {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modal-content {
        padding: 40px 30px;
    }

    .gallery-item.video-item {
        height: 60vh !important;
        width: calc(60vh * 9 / 16) !important;
        /* Explicit width for 9:16 ratio */
        max-width: 34vh !important;
        aspect-ratio: 9/16 !important;
    }
}