@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@font-face {
    font-family: aadi;
    src: url(/assets/fonts/font01.ttf);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
    /* Base for rem */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    padding-left: 80px;
    /* Space for dock navigation */
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 991px) {
    body {
        padding-left: 0;
    }
}

/* Global Container Utility */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Base Headings & Text Scaling */
h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

p {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.6;
}

/* Responsive Images & Media */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

video,
iframe,
canvas {
    max-width: 100%;
    height: auto;
}




/* --------------------- */
/* HEADER STYLES (Black Background, White Text) */
/* --------------------- */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #000000;
    /* Black background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
    /* INCREASED HEIGHT to accommodate larger logo and subtitle */
}

/* Logo Group Container */
.logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align logo and subtitle to the left */
    padding-top: 0rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.desktop-ticket-btn {
    background-color: #f50909;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 9, 9, 0.35);
    white-space: nowrap;
    font-size: 1rem;
    display: block;
}

.desktop-ticket-btn:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 9, 9, 0.5);
}

@media (max-width: 768px) {
    .desktop-ticket-btn {
        display: none;
    }
}

/* Logo Image Styling (NEW) */
.logo-img {
    border-radius: 0.25rem;
    /* Small rounded corners for aesthetics */
    width: 180px;
    height: auto;
    max-width: 100%;
    display: block;
}

/* New Subtitle Style */
.logo-subtitle {
    color: #ffffff;
    font-size: 0.56rem;
    /* Small, legible size */
    font-weight: 400;
    margin-top: 0.1rem;
    line-height: 0;
    /* Tight line height */
    margin-left: 12px;
}

.logo-subtitle strong {
    color: #dc2626;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

/* Desktop Nav Link */
.nav-link {
    color: #ffffff;
    /* White text */
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: color 150ms ease-in-out;
    font-size: 1.125rem;
    /* INCREASED FONT SIZE */
    font-weight: 500;
}

/* Navigation Hover Effect (Red) */
.nav-link:hover {
    color: #ef4444;
    /* Bright Red on hover */
}

/* Get Tickets Button (Red) */
.ticket-button {
    background-color: #f50909;
    /* Darker Red */
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 300ms ease-in-out;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.4);
}

.ticket-button:hover {
    background-color: #b91c1c;
    /* Brighter Red on hover */
}

/* =====================================================
   HAMBURGER BUTTON
   ===================================================== */
.mob-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mob-menu-btn:hover {
    background: rgba(235, 0, 40, 0.15);
    border-color: rgba(235, 0, 40, 0.4);
}

.mob-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        width 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.mob-menu-open .mob-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mob-menu-open .mob-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mob-menu-open .mob-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .mob-menu-btn {
        display: flex;
    }
}

/* =====================================================
   FULL SCREEN OVERLAY
   ===================================================== */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #000000;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    clip-path: circle(0% at calc(100% - 42px) 48px);
    transition: clip-path 0.65s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.3s ease,
        visibility 0s linear 0.65s;
    overflow: hidden;
}

.mob-overlay.mob-open {
    visibility: visible;
    opacity: 1;
    clip-path: circle(150% at calc(100% - 42px) 48px);
    transition: clip-path 0.65s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.1s ease;
}

/* Red accent line on left edge */
.mob-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #eb0028 20%, #eb0028 80%, transparent);
}

.mob-overlay-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 1.5rem;
    overflow-y: auto;
}

/* =====================================================
   OVERLAY HEADER
   ===================================================== */
.mob-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6rem;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mob-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.mob-close-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.mob-close-btn:hover {
    background: #eb0028;
    border-color: #eb0028;
}

/* =====================================================
   NAV ITEMS
   ===================================================== */
.mob-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 0;
    gap: 0;
}

.mob-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: padding-left 0.3s ease;

    /* Stagger-in animation */
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease, padding-left 0.25s ease, color 0.2s ease;
}

.mob-overlay.mob-open .mob-nav-item {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.mob-overlay.mob-open .mob-nav-item[data-index="0"] {
    transition-delay: 0.15s;
}

.mob-overlay.mob-open .mob-nav-item[data-index="1"] {
    transition-delay: 0.2s;
}

.mob-overlay.mob-open .mob-nav-item[data-index="2"] {
    transition-delay: 0.25s;
}

.mob-overlay.mob-open .mob-nav-item[data-index="3"] {
    transition-delay: 0.3s;
}

.mob-overlay.mob-open .mob-nav-item[data-index="4"] {
    transition-delay: 0.35s;
}

.mob-overlay.mob-open .mob-nav-item[data-index="5"] {
    transition-delay: 0.4s;
}

.mob-nav-item:hover {
    padding-left: 0.5rem;
    color: #eb0028;
}

.mob-nav-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(235, 0, 40, 0.05);
    transition: left 0.3s ease;
}

.mob-nav-item:hover::before {
    left: 0;
}

.mob-nav-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: #eb0028;
    letter-spacing: 0.1em;
    min-width: 24px;
    font-family: 'Inter', sans-serif;
}

.mob-nav-label {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.mob-nav-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: #eb0028;
    flex-shrink: 0;
}

.mob-nav-item:hover .mob-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   OVERLAY FOOTER
   ===================================================== */
.mob-menu-footer {
    flex-shrink: 0;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
}

.mob-overlay.mob-open .mob-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mob-ticket-btn {
    display: block;
    text-align: center;
    background: #eb0028;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mob-ticket-btn:hover {
    background: #ff1a3c;
    transform: translateY(-2px);
}

.mob-socials {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.mob-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mob-social-icon:hover {
    background: rgba(235, 0, 40, 0.15);
    border-color: rgba(235, 0, 40, 0.4);
    color: #eb0028;
}

.mob-footer-tag {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    margin: 0;
}

.mob-footer-tag strong {
    color: #eb0028;
}

/* Hide old mobile menu elements */
#mobile-menu,
.nav-toggle,
.menu-button {
    display: none !important;
}

/* Prevent body scroll when menu is open */
body.mob-menu-open {
    overflow: hidden;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .logo-img {
        width: 150px;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 130px;
    }

    .logo-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-subtitle {
        font-size: 0.8rem;
        margin-left: 12px;
    }
}

@media (max-width: 480px) {
    .logo-subtitle {
        font-size: 0.39rem;
        margin-left: 9px;
    }
}





















/* ==================================== */
/* 9. Modal Popup Styles - FINAL UPDATED LAYOUT */
/* ==================================== */

/* Modal Overlay (Full screen background) */
.modal-overlay {
    display: none;
    /* FIX: HIDES IT ON LOAD */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Modal Content Box - Base Style (Mobile Default) */
.modal-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(255, 107, 0, 0.4);
    width: 90%;
    max-width: 450px;
    position: relative;
    color: white;
    transform: scale(0.9);
    transition: transform 0.3s ease;

    /* Mobile/Small Screen Default (Single Column, Centered) */
    text-align: center;
    display: block;
}

/* Show Modal state (Controlled by JS) */
.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

/* Close Button (X) */
.close-button {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #e11313;
}

/* Icon Styling (Centered on Mobile) */
.modal-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
    display: block;
}

/* Text Styling (Centered on Mobile) */
.modal-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.modal-message {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.modal-action {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}




/* Base Anchor Tag */
.social-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #FFFFFF;
    /* Default link color set to White */
    max-width: fit-content;
}

/* Base state: Icon is white by inheriting from the anchor tag */
.social-link i {
    font-size: 2.5rem;
    color: inherit;
    /* Ensures it starts white */
    transition: all 0.3s ease;
}

/* Hover state: Applying the Gradient Effect */
.social-link:hover i {
    /* 1. Set the background to the Instagram-style diagonal gradient */
    background: linear-gradient(45deg,
            #feda75,
            /* Yellow/Light Orange */
            #fa7e1e,
            /* Dark Orange */
            #d62976,
            /* Pink/Magenta */
            #962fbf,
            /* Purple */
            #4f5bd5
            /* Blue */
        );

    /* 2. CLIP the background to the text (icon shape) */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Make the text transparent so the background shows through */
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback for non-webkit browsers */

    /* Scaling Effect */
    transform: scale(1.15);
}

/* Ensure desktop alignment remains correct */
@media (min-width: 600px) {
    .social-link {
        text-align: left;
    }
}






/* New CSS for Big Screen Layout (Two Columns) */
@media (min-width: 600px) {
    .modal-content {
        max-width: 700px;
        padding: 40px;
        display: flex;
        /* Activate flexbox for two columns */
        text-align: left;
    }

    /* Left Column: Icon and Main Title */
    .modal-left {
        flex: 0 0 30%;
        padding-right: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Right Column: Message and Social Links */
    .modal-right {
        flex: 1;
        padding-left: 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Re-align elements within the new columns */
    .modal-icon {
        font-size: 4.5rem;
        /* ICON BIGGER */
        margin-bottom: 10px;
        text-align: center;
    }

    .modal-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0;
    }

    .modal-message,
    .modal-action {
        text-align: left;
        /* Message and Action text alignment */
        margin-bottom: 10px;
    }

    .social-link {
        text-align: left;
        /* Align icon under the left-aligned text */
    }
}






















/* --------------------- */
/* HERO STYLES - Set to 100vh for full display */
/* --------------------- */

.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/logo/hero_background.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform, filter, opacity;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.hero-text-container {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
    margin-top: -110px;
    will-change: transform, opacity;
}

.hero-title {
    font-family: aadi;
    font-size: clamp(3rem, 12vw, 10rem);
    /* Improved scaling */
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 1.2rem;
    letter-spacing: clamp(5px, 3vw, 30px);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 2.25rem);
    /* Improved scaling */
    font-weight: 300;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 5px);
    opacity: 0.8;
}

/* --------------------- */
/* DUMMY CONTENT AREA FOR TESTING FIXED BACKGROUND EFFECT */
/* --------------------- */
.content-section {
    background-color: #f8f8ff;
    padding: 4rem 1rem;
    min-height: 100vh;
    text-align: center;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.content-section p {
    max-width: 800px;
    margin: 0 auto;
    color: #4b5563;
    line-height: 1.6;
}
















/* Timer Section Styles */
.timer-section {
    background: radial-gradient(circle at top right, #1a1a1a, #000000);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(235, 0, 40, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.timer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timer-header {
    margin-bottom: 4rem;
}

.timer-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1;
    color: #ffffff;
}

.timer-title .highlight {
    color: #eb0028;
    /* TED Red */
    display: block;
    text-shadow: 0 0 30px rgba(235, 0, 40, 0.2);
}

.timer-subtitle {
    font-size: 1.25rem;
    color: #888;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.countdown-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.number-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.number-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 0, 40, 0.3);
}

.number {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #555;
    font-weight: 600;
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 300;
    color: #eb0028;
    margin-top: -30px;
}

.timer-info {
    max-width: 800px;
    margin: 0 auto;
}

.timer-info .description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.timer-info .red-text {
    color: #eb0028;
    font-weight: 800;
}

.timer-info strong {
    color: #ffffff;
    font-weight: 600;
}

.timer-footer {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .countdown-separator {
        display: none;
    }

    .countdown-display {
        gap: 1rem;
    }

    .countdown-column {
        min-width: 100px;
    }

    .number {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .timer-section {
        padding: 4rem 1.5rem;
    }

    .timer-title {
        font-size: 3rem;
    }

    .number {
        font-size: 2.5rem;
    }

    .number-wrapper {
        padding: 1.5rem 0.5rem;
    }

    .timer-info .description {
        font-size: 1.1rem;
    }

    .countdown-column {
        min-width: calc(50% - 1rem);
        /* Multi-row on small screens */
    }
}











/* --- General Section Title Styles (Reused from About Us) --- */
.section-titles-containers {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.section-main-titles {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-main-titles::before,
.section-main-titles::after {
    content: '';
    flex: 1 1 200px;
    min-width: 60px;
    height: 4px;
    background-color: #dc2626;
    max-width: 150px;
    border-radius: 2px;

}

.yourExp {
    color: #f50909;
}



/* --- TICKET SECTION STYLES --- */
.tedx-ticket-section {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.tedx-ticket-wrapper {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Reset for the reused title class, although generally redundant if h2 is used */
/* .tedx-ticket-title is removed as we use .section-main-titles */

/* --- TICKET CONTAINER (Desktop: Border/Radius applied here) --- */
.tedx-ticket-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

/* --- TICKET GRAPHIC (Desktop: Uses the Wide Image) --- */
.ticket-graphic {
    width: 100%;
    background-image: url('/assets/optimized/ticket-horizontal-1200.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    aspect-ratio: 2000 / 778;
}

.ticket-graphic-sizer {
    padding-top: 38.9%;
}

/* --- GET TICKET BUTTON (Desktop: Absolute Position) --- */
.get-ticket-button-link {
    position: absolute;
    /* Positioning maintained */
    right: 3%;
    top: 50%;
    transform: translateY(-50%);

    /* Button Styling */
    background-color: #f50909;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.get-ticket-button-link:hover {
    background-color: #b91c1c;
}

/* --- IMPORTANT RESPONSIVE FIX (Mobile: Below 768px) --- */
@media (max-width: 768px) {

    /* Title Override for Mobile */
    .section-main-titles {
        font-size: 2rem;
    }

    /* Container Overrides for Mobile Stacking */
    .tedx-ticket-container {
        display: block;
        padding-bottom: 0.5rem;
        border: none;
        border-radius: 0;
    }

    /* Graphic Overrides for Mobile (Vertical Image) */
    .ticket-graphic {
        /* Try new vertical first, fall back to old */
        background-image: url('/assets/optimized/ticket-vertical-720.jpg');
    }

    /* Aspect Ratio and Border/Radius for Mobile Image */
    .ticket-graphic-sizer {
        /* Aspect Ratio for tall image (125% assumed from your previous use) */
        padding-top: 125%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
    }

    /* Button Overrides for Mobile Positioning (Below Barcode) */
    .get-ticket-button-link {
        /* Positioning Overrides */
        position: static;
        transform: none;

        /* Font Size Update */
        font-size: 0.9rem;

        /* Positioning Logic (Pulls up into the image's bottom space) */
        margin-top: -6rem;
        margin-bottom: 47px;
        margin-left: 25%;

        /* Width and Flex Setup */
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        /* Style Clean-up */
        border-top: none;
        padding-top: 0.8rem;
        border-radius: 4px;
    }
}

















/* About Us Section Styles */
.about-sections {
    width: 100%;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 6rem) 0;
    background-color: #0d0d0d;
    position: relative;
    z-index: 5;
    text-align: center;
}

.section-main-titles {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 1rem;
    white-space: nowrap;
}

.title-lines {
    flex-grow: 1;
    /* Allow line to grow */
    border: none;
    border-top: 1px solid #d1d5db;
    /* Light gray line */
    margin: 0;
}

.about-content-wrappers {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    /* Essential for balanced distribution */
    text-align: left;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.about-contents {
    flex: 1;
    /* Take up available space */
    min-width: 300px;
    /* Minimum width before wrapping */
    text-align: left;
    /* Align text to the left within its block */
}

.about-contents h3 {
    font-size: 2rem;
    /* text-3xl */
    font-weight: 600;
    /* font-semibold */
    color: #f50909;
    /* Red color for sub-heading */
    margin-bottom: 1rem;
}

.about-contents h3 span {
    color: #ffffff;
}

.about-contents p {
    font-size: 1.125rem;
    /* text-lg */
    color: #d1d5db;
    /* text-gray-300 */
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
}

.about-imagess {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0;
}

.about-imagess .tilt-card {
    width: 100%;
    perspective: 1000px;
}

.about-imagess .tilt-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    display: block;
}

.about-imagess .tilt-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.about-imagess .tilt-card:nth-child(1) img {
    aspect-ratio: 2 / 1;
}

.about-imagess .tilt-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.about-imagess .tilt-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* --- GLOBAL TILT EFFECT CLASSES --- */
.tilt-card {
    position: relative;
    overflow: visible !important;
    cursor: crosshair;
}

.tilt-inner {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.tilt-tooltip {
    position: absolute;
    pointer-events: none;
    background: #ffffff;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 100;
    opacity: 1;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -120%);
    left: 0;
    top: 0;
}

/* Explore More Button Styles */
.explore-more-button {
    display: inline-block;

    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: 1px solid #ffffff !important;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    margin-top: 1.5rem;
    /* Space from content above */
    border: none;
    cursor: pointer;
}

.explore-more-button:hover {
    background-color: #ffffff;
    color: #0d0d0d;
    transform: scale(1.05) translateY(-2px);
}

/* Responsive Design (Media Queries) */
@media (max-width: 768px) {

    /* md breakpoint for Tailwind is 768px */
    .about-sections {
        padding: 40px 0;
        width: 100%;
        overflow: hidden;
    }

    .section-main-titles {
        font-size: 2rem;
        /* Smaller font for mobile */
    }

    .about-content-wrappers {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
        gap: 25px;
    }

    .about-contents {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        text-align: center;
        flex: none;
        /* Reset flex-1 from desktop */
    }

    .about-contents p {
        text-align: center;
        width: 100%;
        margin: 0 0 1rem 0;
    }

    .about-imagess {
        display: flex;
        /* Switch to flex column for better stack centering */
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        gap: 15px;
        flex: none;
        /* Reset flex-1 from desktop */
    }

    /* Reset grid spans — all cards stack in a single column */
    .about-imagess .tilt-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    /* Reset first card's taller height; uniform height on mobile */
    .about-imagess .tilt-card:nth-child(1) img {
        height: 220px;
    }

    .about-imagess .tilt-card img {
        width: 100%;
        height: 220px;
        /* Remove 3D tilt transform on mobile */
        transform: none !important;
    }
}

/* Tablet (768px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-content-wrappers {
        width: 95%;
        gap: 2rem;
    }

    .about-imagess {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0.5rem;
    }

    .about-imagess .tilt-card:nth-child(1) {
        grid-column: 1 / 3;
    }

    .about-imagess .tilt-card img {
        height: 200px;
    }

    .about-imagess .tilt-card:nth-child(1) img {
        height: 240px;
    }
}











/* --- General Section Title Styles --- */
.tedx-pre-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.tedx-pre-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tedx-pre-main-title {
        font-size: 2rem;
    }

}

.tedx-pre-title-line {
    flex-grow: 1;
    border: none;
    border-top: 1px solid #d1d5db;
    margin: 0;
}

/* General content wrapper for centering */
.tedx-pre-content-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

























/* --- General Section Title Styles --- */
.section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .section-main-title {
        font-size: 2rem;
    }
}

/* --- FINAL DOCK DEFINITION --- */
.vertical-dock {
    position: fixed !important;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    /* Standardized high z-index */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 1;
    will-change: transform, opacity;
}

.dock-item {
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 1.3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    will-change: transform !important;
}

.dock-item:hover {
    background: #eb0028 !important;
    box-shadow: 0 0 30px rgba(235, 0, 40, 0.8) !important;
    border-color: #ff3d5e !important;
}

.dock-item.highlight-item {
    border-color: #eb0028 !important;
    background: rgba(235, 0, 40, 0.25) !important;
}

.dock-tooltip {
    position: absolute !important;
    left: calc(100% + 25px) !important;
    top: 50% !important;
    transform: translateY(-50%) scale(0.9) !important;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    pointer-events: none !important;
}

.dock-item:hover .dock-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) scale(1) !important;
}

/* Speaker Dropdown Styles */
.dock-dropdown {
    position: absolute !important;
    left: calc(100% + 15px) !important;
    top: 50% !important;
    transform: translateY(-50%) scale(0.9) !important;
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 8px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 160px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) !important;
    z-index: 1000 !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6) !important;
}

.dock-item.has-dropdown:hover .dock-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) scale(1) !important;
}

/* Hide the main tooltip when dropdown is present to avoid overlap */
.dock-item.has-dropdown:hover .dock-tooltip {
    opacity: 0 !important;
    visibility: hidden !important;
}

.dock-dropdown a {
    color: #ffffff !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
}

.dock-dropdown a:hover {
    background: #eb0028 !important;
    color: #ffffff !important;
    padding-left: 25px !important;
}

.dock-dropdown a:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

@media (max-width: 991px) {
    .vertical-dock {
        display: none !important;
    }
}

/* Laptop Zoom & Consistency Fixes */
@media (max-width: 1440px) {
    html {
        font-size: 15px;
    }

    /* Slight scale down for common hi-res laptops */
}

@media (max-width: 1200px) {
    .container {
        width: 92%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}





/* General content wrapper for centering */
.content-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   EVENT SCHEDULE — PREMIUM REDESIGN
   ═══════════════════════════════════════════════════ */

.schedule-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Subtle radial ambient behind the section */
.schedule-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(235, 0, 40, 0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.schedule-wrapper {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Timeline track ─────────────────────────────── */
.sched-timeline {
    position: relative;
    margin-top: 4rem;
    padding: 0.5rem 0 3rem;
}

/* The static grey background rail */
.sched-line-track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
}

/* The animated red fill that grows as you scroll */
.sched-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* driven by JS */
    background: linear-gradient(to bottom,
            transparent 0%,
            #eb0028 8%,
            #eb0028 92%,
            transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(235, 0, 40, 0.5);
    will-change: height;
}

/* ── Single schedule row ────────────────────────── */
.sched-item {
    position: relative;
    display: grid;
    /* node always centred; card fills one side */
    grid-template-columns: 1fr 48px 1fr;
    align-items: flex-start;
    margin-bottom: 4rem;
    z-index: 1;

    /* initial hidden state — JS reveals */
    opacity: 0;
    will-change: transform, opacity;
}

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

/* LEFT-side card */
.sched-item[data-side="left"] .sched-node {
    grid-column: 2;
    grid-row: 1;
}

.sched-item[data-side="left"] .sched-card {
    grid-column: 1;
    grid-row: 1;
    padding-right: 2.5rem;
}

/* RIGHT-side card */
.sched-item[data-side="right"] .sched-node {
    grid-column: 2;
    grid-row: 1;
}

.sched-item[data-side="right"] .sched-card {
    grid-column: 3;
    grid-row: 1;
    padding-left: 2.5rem;
}

/* ── Node (dot + pulse ring) ────────────────────── */
.sched-node {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.4rem;
    /* aligns dot with card time label */
    position: relative;
    z-index: 2;
}

.sched-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #eb0028;
    border: 2px solid #000;
    box-shadow: 0 0 0 2px #eb0028, 0 0 16px rgba(235, 0, 40, 0.5);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sched-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(235, 0, 40, 0.35);
    animation: schedPulse 2.2s ease-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes schedPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    70% {
        transform: translate(-50%, -50%) scale(3.2);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* ── Card ───────────────────────────────────────── */
.sched-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s ease;
}

.sched-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(235, 0, 40, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.5);
}

.sched-card:hover~.sched-node .sched-dot,
.sched-item:hover .sched-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 2px #eb0028, 0 0 28px rgba(235, 0, 40, 0.8);
}

/* Glassmorphism inner */
.sched-card-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.35s ease, background 0.35s ease;
}

.sched-card:hover .sched-card-inner {
    border-color: rgba(235, 0, 40, 0.25);
    background: rgba(235, 0, 40, 0.04);
}

/* Animated red glow that appears on hover */
.sched-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 0%,
            rgba(235, 0, 40, 0.18) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.sched-card:hover .sched-card-glow {
    opacity: 1;
}

/* Top red accent line */
.sched-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.8rem;
    right: 1.8rem;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(235, 0, 40, 0.6),
            transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 1px;
}

.sched-card:hover .sched-card-inner::before {
    opacity: 1;
}

/* ── Card content ───────────────────────────────── */
.sched-time {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #eb0028;
    background: rgba(235, 0, 40, 0.1);
    border: 1px solid rgba(235, 0, 40, 0.2);
    border-radius: 6px;
    padding: 0.22rem 0.65rem;
    margin-bottom: 0.75rem;
}

.sched-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.sched-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.sched-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   Switch to single-column right-rail layout
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {

    .sched-line-track {
        left: 24px;
        transform: none;
    }

    /* All items: node col is 48px on the left, card fills rest */
    .sched-item {
        grid-template-columns: 48px 1fr;
        margin-bottom: 2.5rem;
    }

    /* Override both sides to same layout */
    .sched-item[data-side="left"] .sched-node,
    .sched-item[data-side="right"] .sched-node {
        grid-column: 1;
        grid-row: 1;
        justify-content: center;
        padding-top: 1.4rem;
    }

    .sched-item[data-side="left"] .sched-card,
    .sched-item[data-side="right"] .sched-card {
        grid-column: 2;
        grid-row: 1;
        padding-left: 0.75rem;
        padding-right: 0;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {

    .sched-line-track {
        left: 18px;
    }

    .sched-item {
        grid-template-columns: 36px 1fr;
        margin-bottom: 2rem;
    }

    .sched-card-inner {
        padding: 1.25rem 1.2rem;
    }

    .sched-title {
        font-size: 1rem;
    }

    .sched-desc {
        font-size: 0.82rem;
    }
}

/* ═══════════════════════════════════════════════════
   ACCESSIBILITY — reduce motion
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .sched-pulse {
        animation: none;
    }

    .sched-card {
        transition: none;
    }
}


/* =====================================================
   STAR-BORDER COUNTDOWN BOXES
   Translated from StarBorder Vue component
   ===================================================== */

/* Keyframe animations */
@keyframes star-movement-bottom {
    0% {
        transform: translate(0%, 0%);
        opacity: 1;
    }

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

@keyframes star-movement-top {
    0% {
        transform: translate(0%, 0%);
        opacity: 1;
    }

    100% {
        transform: translate(100%, 0%);
        opacity: 0;
    }
}

/* Outer wrapper — transparent, clips the orbs */
.countdown-box {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 1px 0;
    /* border thickness layer */
}

/* Bottom star orb (starts bottom-right, moves left) */
.countdown-box::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 50%;
    opacity: 0.7;
    bottom: -11px;
    right: -250%;
    border-radius: 50%;
    background: radial-gradient(circle, #dc2626, transparent 10%);
    animation: star-movement-bottom 6s linear infinite alternate;
    z-index: 0;
}

/* Top star orb (starts top-left, moves right) */
.countdown-box::after {
    content: '';
    position: absolute;
    width: 300%;
    height: 50%;
    opacity: 0.7;
    top: -10px;
    left: -250%;
    border-radius: 50%;
    background: radial-gradient(circle, #dc2626, transparent 10%);
    animation: star-movement-top 6s linear infinite alternate;
    z-index: 0;
}

/* Inner content layer — sits on top of the orbs */
.countdown-inner {
    position: relative;
    z-index: 10;
    border: 1px solid #333333;
    background-color: #0b0b0b;
    color: #ffffff;
    text-align: center;
    padding: 24px 40px;
    border-radius: 20px;
    min-width: 110px;
}

/* Value (number) inside the inner box */
.countdown-inner .value {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

/* Label inside the inner box */
.countdown-inner .label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888888;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .countdown-inner {
        padding: 16px 24px;
        min-width: 80px;
    }

    .countdown-inner .value {
        font-size: 2.25rem;
    }
}

/* =====================================================
   MOBILE SCHEDULE ACCORDION
   ===================================================== */

/* Hidden on desktop — timeline handles that */
.schedule-accordion {
    display: none;
}

/* Show timeline & hide accordion on mobile */
@media (max-width: 767px) {
    .timeline-container {
        display: block;
        /* Restored timeline for mobile */
    }

    .schedule-accordion {
        display: none !important;
        /* Fully disabled accordion */
    }
}

/* ── Accordion item ───────────────────────────────── */
.acc-item {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.acc-item--accent {
    background: linear-gradient(145deg, #7f1d1d 0%, #991b1b 100%);
    border-color: rgba(220, 38, 38, 0.3);
}

/* Open state */
.acc-item.acc-open {
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.acc-item--accent.acc-open {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.35);
}

/* ── Trigger button ───────────────────────────────── */
.acc-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    gap: 0.75rem;
}

.acc-trigger:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.acc-trigger-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* Time badge */
.acc-time {
    font-size: 0.78rem;
    font-weight: 700;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.12);
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    width: fit-content;
}

.acc-item--accent .acc-time {
    color: #fca5a5;
    background: rgba(255, 255, 255, 0.15);
}

/* Event title */
.acc-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

/* Arrow */
.acc-arrow {
    font-size: 1rem;
    color: #dc2626;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: inline-block;
}

.acc-item--accent .acc-arrow {
    color: #fca5a5;
}

/* Rotate arrow when open */
.acc-item.acc-open .acc-arrow {
    transform: rotate(180deg);
}

/* ── Collapsible body ─────────────────────────────── */
.acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1rem;
}

/* Visible state (class toggled by JS) */
.acc-body.acc-body--open {
    max-height: 300px;
    padding: 0 1rem 0.875rem;
}

.acc-body p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #d1d5db;
}

.acc-item--accent .acc-body p {
    color: rgba(255, 255, 255, 0.85);
}







/* --- Styling for the Big "Reveal Soon" Excitement Block --- */

/* The main container for the excitement message */

.reveal-soon-excitement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(2rem, 10vw, 5rem) 2rem;
    margin: 40px auto;
    background-color: #fef2f2;
    border: 5px solid #ef4444;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
}

.excitement-pre-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #4b5563;
    letter-spacing: 2px;
}

.excitement-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: #1f2937;
    margin: 10px 0;
}

.excitement-title .highlight {
    color: #dc2626;
}

.excitement-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #6b7280;
    max-width: 600px;
    line-height: 1.6;
}

/* ============================================
   SPEAKERS SECTION
   ============================================ */

.speakers-section {
    padding: 5rem 1rem;
    background-color: #0c0c0c;
    position: relative;
    overflow: hidden;
}

.speakers-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.speakers-title-wrapper {
    margin-bottom: 4rem;
}

/* This container can be used if you decide to add speakers back */
.speaker-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Styles for the "Coming Soon" container */
.coming-soon-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 4rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(235, 0, 40, 0.4), 0 0 20px rgba(235, 0, 40, 0.3);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(235, 0, 40, 0.8), 0 0 40px rgba(235, 0, 40, 0.6);
    }
}




/* ============================================
   SPONSORS SECTION
   ============================================ */

.sponsor-section {
    background-color: #000000;
    padding: 2rem 1rem 6rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsor-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-titles {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 4px);
    margin-bottom: 4rem;

}

.section-titles::before,
.section-titles::after {
    content: '';
    flex: 1 1 200px;
    min-width: 60px;
    height: 4px;
    background-color: #dc2626;
    max-width: 150px;


}


.logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    /* INCREASED GAP */
}

.logo-container img {
    max-height: 80px;
    /* CONTROLLED HEIGHT */
    width: auto;
    max-width: 250px;
    /* MAX WIDTH */
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth transition */
    opacity: 0.9;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo-container img:hover {
    opacity: 1;
    transform: scale(1.05);
    /* Enlarge on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-titles {
        font-size: 2rem;
    }

    .logo-container {
        gap: 3rem;
    }

    .logo-container img {
        max-height: 50px;
    }
}




/* ============================================
   SPONSORS SECTION
   ============================================ */
.sponsor-section {
    padding: 4rem 0;
    background-color: #000000;
}

.logo-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.logo-container img {
    max-height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-container {
        gap: 2rem;
    }
    .logo-container img {
        max-height: 60px;
        max-width: 150px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background-color: #0d0d0d;
    padding: 6rem 1.5rem;
    color: #ffffff;
}

.faq-section .container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

#single-accordion-list {
    text-align: left;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.accordion-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-question:hover {
    color: #eb0028;
}

.arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.accordion-question[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
    color: #eb0028;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.accordion-content[aria-hidden="false"] {
    transition: max-height 1s ease-in-out;
}

.accordion-content p {
    padding: 0 1rem 1.5rem 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #d1d5db;
    margin: 0;
}




/* ============================================
   CONTACT US SECTION
   ============================================ */

/* ── Contact Section (index.html) ─────────────────────── */
.contact-page-section {
    background-color: #0a0a0a;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 60%, rgba(180, 20, 20, 0.10) 0%, transparent 55%);
    padding: 6rem 1.5rem;
    color: #ffffff;
}

.contact-page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section header */
.cp-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cp-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.4);
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.contact-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 0.65rem;
    letter-spacing: 1px;

}

.contact-title::before,
.contact-title::after {
    content: '';
    flex: 1 1 200px;
    min-width: 60px;
    height: 4px;
    background-color: #dc2626;
    max-width: 150px;
    border-radius: 2px;

}

.cp-red {
    color: #dc2626;
}

.cp-subtitle {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Two-column grid */
.cp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .cp-grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

/* Form card */
.contact-form-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cp-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Side-by-side row */
.cp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .cp-row {
        grid-template-columns: 1fr;
    }
}

/* Floating label inputs */
.cp-float {
    position: relative;
    margin-bottom: 1.5rem;
}

.cp-float input,
.cp-float textarea {
    width: 100%;
    padding: 1.1rem 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #f3f4f6;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    box-sizing: border-box;
    outline: none;
}

.cp-float textarea {
    resize: vertical;
    min-height: 130px;
    padding-top: 1.4rem;
    line-height: 1.6;
}

.cp-float label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 0.88rem;
    color: #6b7280;
    pointer-events: none;
    transition: top 0.2s, font-size 0.2s, color 0.2s, transform 0.2s;
}

.cp-float:has(textarea) label {
    top: 1rem;
    transform: none;
}

.cp-float input:not(:placeholder-shown)~label,
.cp-float input:focus~label,
.cp-float textarea:not(:placeholder-shown)~label,
.cp-float textarea:focus~label {
    top: 0.35rem;
    font-size: 0.68rem;
    color: #dc2626;
    transform: none;
}

.cp-float input:focus,
.cp-float textarea:focus {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}

.cp-ico {
    font-size: 0.72rem;
    opacity: 0.75;
    margin-right: 0.15rem;
}

/* Submit button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 18px rgba(220, 38, 38, 0.35);
    margin-top: 0.25rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.5);
}

.submit-btn:active {
    transform: none;
}

/* Right info column */
.cp-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cp-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cp-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.cp-info-item:last-of-type {
    margin-bottom: 0;
}

.cp-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 0.95rem;
}

.cp-info-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6b7280;
    font-weight: 600;
    margin: 0 0 0.18rem;
}

.cp-info-val {
    font-size: 0.92rem;
    color: #e5e7eb;
    text-decoration: none;
    line-height: 1.5;
    display: block;
}

a.cp-info-val:hover {
    color: #dc2626;
}

.cp-social-row {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cp-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.cp-social-btn:hover {
    background: rgba(220, 38, 38, 0.14);
    border-color: rgba(220, 38, 38, 0.4);
    color: #dc2626;
    transform: translateY(-2px);
}

.cp-full-page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.cp-full-page-btn:hover {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.6);
    transform: translateY(-1px);
}

/* old selectors kept for backward compat */
.form-input-group {
    display: none;
}

/* =====================================================
   TOP TEDx TALKS SECTION
   ===================================================== */

.tedx-talks-section {
    padding-top: 5rem;
}

.tedx-talks-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;

}

.tedx-talks-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: 1px;

}

.tedx-talks-heading::before,
.tedx-talks-heading::after {
    content: '';
    flex: 1 1 200px;
    min-width: 60px;
    height: 4px;
    background-color: #dc2626;
    max-width: 150px;
    border-radius: 2px;

}

.tedx-talks-white {
    color: #ffffff;
}

.tedx-talks-red {
    color: #eb0028;
}



.tedx-talks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .tedx-talks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tedx-talks-grid {
        grid-template-columns: 1fr;
    }
}

/* Talk Card */
.tedx-talk-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tedx-talk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(235, 0, 40, 0.2);
}

/* Thumbnail */
.tedx-talk-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.tedx-talk-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tedx-talk-card:hover .tedx-talk-thumb img {
    transform: scale(1.05);
}

.tedx-talk-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.tedx-talk-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Play overlay */
.tedx-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tedx-talk-thumb:hover .tedx-play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.tedx-play-btn {
    width: 60px;
    height: 60px;
    background: #eb0028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(235, 0, 40, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tedx-talk-thumb:hover .tedx-play-btn {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(235, 0, 40, 0.7);
}

.tedx-play-btn i {
    color: #ffffff;
    font-size: 1.4rem;
    margin-left: 4px;
}

/* Card Content */
.tedx-talk-content {
    padding: 1.5rem;
    text-align: left;
}

.tedx-talk-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.tedx-talk-desc {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
}

/* View More Button */
.tedx-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eb0028;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 0, 40, 0.4);
}

.tedx-view-more-btn:hover {
    background: #ff1a3c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 0, 40, 0.6);
}

.tedx-view-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.tedx-view-more-btn:hover i {
    transform: translateX(4px);
}

/* Fade-in animation */
.tedx-talks-section {
    opacity: 0;
    transform: translateY(30px);
    animation: tedx-fade-in 0.8s ease forwards;
}

@keyframes tedx-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   FOOTER NAVIGATION
   ===================================================== */
.tedx-footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 1rem 0 1.5rem;
}

.tedx-footer-link {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    transition: color 0.25s ease;
}

.tedx-footer-link:hover {
    color: #eb0028;
}

.tedx-footer-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0 0.15rem;
}

@media (max-width: 600px) {
    .tedx-footer-nav {
        gap: 0.15rem;
    }

    .tedx-footer-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.35rem;
    }

    .tedx-footer-sep {
        font-size: 0.75rem;
        margin: 0 0.1rem;
    }
}





/* ============================================
   FOOTER
   ============================================ */

.tedx-unique-footer {
    background-color: #000000;
    color: #a0aec0;
    padding: 5rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tedx-unique-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.tedx-unique-main-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.tedx-unique-col-contact,
.tedx-unique-col-branding,
.tedx-unique-col-social {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.tedx-unique-contact-heading,
.tedx-unique-social-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tedx-unique-contact-detail {
    margin: 0.5rem 0;
}

.tedx-unique-contact-link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.tedx-unique-contact-link:hover {
    color: #eb0028;
}

.tedx-unique-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tedx-unique-logo {
    max-width: 200px;
    margin-bottom: 0.5rem;
}

.tedx-unique-event-subtitle {
    font-size: 0.8rem;
    font-style: italic;
    margin: 0;
}

.tedx-unique-event-subtitle strong {
    color: #eb0028;
    font-style: normal;
}


.tedx-unique-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.tedx-unique-social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.tedx-unique-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: #eb0028;
}

.tedx-unique-separator {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 0 auto 2rem auto;
}

.tedx-unique-bottom-section {
    text-align: center;
}

.tedx-unique-legal-info {
    font-size: 0.9rem;
}

.tedx-unique-highlight {
    color: #eb0028;
    font-weight: 700;
}

.white-snpsu {
    color: #ffffff;
    font-weight: 700;
}

/* ============================================
   TEASER VIDEO SECTION
   ============================================ */
.teaser-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
    color: #ffffff;
    overflow: hidden;
}

.teaser-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.teaser-video {
    position: relative;
    width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: visible;
    /* To let corner accents show */
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(235, 0, 40, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: 1;
}

.teaser-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #EB0028;
    z-index: 0;
    pointer-events: none;
}

.teaser-top-left {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.teaser-bottom-right {
    bottom: -15px;
    right: -15px;
    border-top: none;
    border-left: none;
}

.teaser-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.teaser-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}

.teaser-white {
    color: #ffffff;
}

.teaser-red {
    color: #EB0028;
}

.teaser-underline {
    width: 60px;
    height: 4px;
    background-color: #EB0028;
    border-radius: 2px;
}

.teaser-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: left;
    margin: 0;
}

/* Responsive Behaviour */
@media (max-width: 1024px) {
    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .teaser-title {
        font-size: 2rem;
        text-align: center;
    }

    .teaser-underline {
        margin: 0 auto;
    }

    .teaser-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .teaser-section {
        padding: clamp(3rem, 10vw, 5rem) 0;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .teaser-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .teaser-corner {
        width: clamp(20px, 5vw, 30px);
        height: clamp(20px, 5vw, 30px);
        border-width: 2px;
    }
}

/* =====================================================
   MEMORIES PARALLAX SECTION (Vanilla HTML/CSS/JS)
   ===================================================== */
.parallax-scroll-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background-color: #000000;
    position: relative;
    width: 100%;
}

.parallax-header-container {
    margin-bottom: 2rem;
}

.parallax-scroll-container {
    /* height: 40rem; */
    /* Integrated with page scroll */
    width: 100%;
}

.parallax-scroll-container::-webkit-scrollbar {
    width: 0;
    display: none;
    /* Hide scrollbar completely to simulate frame interaction */
}

.parallax-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    align-items: flex-start;
    max-width: 64rem;
    margin: 0 auto;
    gap: 2.5rem;
    /* gap-10 */
    padding: 2rem 2.5rem;
    /* Integrated padding */
}

@media (min-width: 768px) {
    .parallax-grid-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .parallax-grid-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.parallax-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    /* gap-10 */
}

.parallax-item {
    will-change: transform;
    /* Important for GPU accelerated animations */
}

.parallax-item img {
    height: 20rem;
    /* h-80 equivalent */
    width: 100%;
    object-fit: cover;
    object-position: left top;
    border-radius: 0.5rem;
    /* rounded-lg */
    margin: 0 !important;
    padding: 0 !important;
}

/* --- Placeholder Sections (Coming Soon / Revealing Soon) --- */
.placeholder-container {
    text-align: center;
    padding: clamp(3rem, 10vw, 6.25rem) 0;
}

.placeholder-heading {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    color: #eb0028 !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    letter-spacing: clamp(2px, 1vw, 5px) !important;
    animation: pulse 2s infinite !important;
    margin: 0 !important;
}

.placeholder-text {
    color: #ffffff !important;
    font-size: clamp(1rem, 1.2vw, 1.2rem) !important;
    margin-top: 10px !important;
    opacity: 0.8 !important;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* --- Zoom Parallax Gallery --- */
.memories-section {
    width: calc(100% + 80px);
    background-color: #000;
    position: relative;
    margin-left: -80px;
    margin-bottom: 0;
    overflow: visible;
    isolation: isolate;
}

.memories-title-container {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem 0rem 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 20;
}

.memories-line {
    height: 0.25rem;
    width: 6rem;
    background-color: #eb0028;
    margin-bottom: 1.5rem;
    border-radius: 9999px;

}

.memories-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.memories-highlight {
    color: #eb0028;
}

.memories-subtitle {
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 300;
}

.zoom-parallax-wrapper {
    position: relative;
    height: 360vh;
}

.zoom-parallax-sticky {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-parallax-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.zoom-parallax-img-container {
    position: absolute;
    border-radius: 0.75rem;
    overflow: hidden;
}

.zoom-parallax-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.zoom-item-0 {
    z-index: 10;
}

.zoom-item-0 .zoom-parallax-img-container {
    width: 25vw;
    height: 25vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.zoom-item-1 {
    z-index: 2;
}

.zoom-item-1 .zoom-parallax-img-container {
    width: 35vw;
    height: 30vh;
    top: 8vh;
    left: 5vw;
}

.zoom-item-2 {
    z-index: 3;
}

.zoom-item-2 .zoom-parallax-img-container {
    width: 20vw;
    height: 45vh;
    top: 30vh;
    left: 3vw;
}

.zoom-item-3 {
    z-index: 4;
}

.zoom-item-3 .zoom-parallax-img-container {
    width: 25vw;
    height: 25vh;
    top: 10vh;
    right: 5vw;
    left: auto;
}

.zoom-item-4 {
    z-index: 5;
}

.zoom-item-4 .zoom-parallax-img-container {
    width: 20vw;
    height: 25vh;
    bottom: 8vh;
    right: 8vw;
    top: auto;
    left: auto;
}

.zoom-item-5 {
    z-index: 6;
}

.zoom-item-5 .zoom-parallax-img-container {
    width: 30vw;
    height: 25vh;
    bottom: 8vh;
    left: 5vw;
    top: auto;
}

.zoom-item-6 {
    z-index: 7;
}

.zoom-item-6 .zoom-parallax-img-container {
    width: 15vw;
    height: 18vh;
    top: 45vh;
    right: 3vw;
    left: auto;
}

@media (max-width: 768px) {
    .zoom-parallax-wrapper {
        height: 320vh;
    }

    .zoom-item-0 .zoom-parallax-img-container {
        width: 50vw;
        height: 28vh;
    }

    .zoom-item-1 .zoom-parallax-img-container {
        width: 40vw;
        height: 20vh;
        top: 6vh;
        left: 4vw;
    }

    .zoom-item-2 .zoom-parallax-img-container {
        width: 30vw;
        height: 30vh;
        top: 28vh;
        left: 2vw;
    }

    .zoom-item-3 .zoom-parallax-img-container {
        width: 30vw;
        height: 20vh;
        top: 8vh;
        right: 3vw;
        left: auto;
    }

    .zoom-item-4 .zoom-parallax-img-container {
        width: 35vw;
        height: 20vh;
        bottom: 8vh;
        right: 4vw;
        top: auto;
        left: auto;
    }

    .zoom-item-5 .zoom-parallax-img-container {
        width: 40vw;
        height: 20vh;
        bottom: 8vh;
        left: 3vw;
        top: auto;
    }

    .zoom-item-6 .zoom-parallax-img-container {
        width: 25vw;
        height: 16vh;
        top: 44vh;
        right: 2vw;
        left: auto;
    }
}

@media (max-width: 991px) {
    .memories-section {
        width: 100%;
        margin-left: 0;
    }
}

/* ============================================
   GENERIC GALLERY GRID SECTION 
   ============================================ */
.gallery-section {
    margin-bottom: 0;
    padding-bottom: 60px;
    height: auto;
}

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

.gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    /* optional uniformity */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    transform-origin: center center;
    /* Default centering */
}

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

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

/* ============================================================ 
   Universal Section Headers (Contact Us Style) 
   ============================================================ */
.app-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-top: 2rem;
}

.app-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.4);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.app-heading-title {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    white-space: nowrap;
}

.app-heading-title::before,
.app-heading-title::after {
    content: '';
    flex: 1 1 200px;
    min-width: 60px;
    height: 4px;
    background-color: #dc2626;
    max-width: 150px;
    /* Match everything else */
    border-radius: 2px;
}

/* FAQ title specific styling */
.faq-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.faq-section .section-title::before,
.faq-section .section-title::after {
    content: '';
    flex: 1 1 200px;
    min-width: 60px;
    height: 4px;
    background-color: #dc2626;
    max-width: 150px;
    border-radius: 2px;

}

.app-red {
    color: #dc2626;
}

.app-section-subtitle {
    font-size: 1.05rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Unified Red Lines for all Section Titles */
.section-main-titles,
.section-main-title,
.section-titles,
.section-title,
.memories-title,
.contact-title,
.timer-title,
.tedx-talks-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    white-space: nowrap;
    width: 100%;
}

.section-main-titles::before,
.section-main-titles::after,
.section-main-title::before,
.section-main-title::after,
.section-titles::before,
.section-titles::after,
.section-title::before,
.section-title::after,
.memories-title::before,
.memories-title::after,
.contact-title::before,
.contact-title::after,
.timer-title::before,
.timer-title::after,
.tedx-talks-heading::before,
.tedx-talks-heading::after {
    content: '';
    flex: 1 1 200px;
    min-width: 60px;
    height: 4px;
    background-color: #dc2626;
    max-width: 150px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .app-heading-title,
    .section-main-titles,
    .section-main-title,
    .section-titles,
    .section-title,
    .memories-title,
    .contact-title,
    .timer-title,
    .tedx-talks-heading {
        white-space: normal;
        text-align: center;
        gap: 0.75rem;
    }
    
    .app-heading-title::before,
    .app-heading-title::after,
    .section-main-titles::before,
    .section-main-titles::after,
    .section-main-title::before,
    .section-main-title::after,
    .section-titles::before,
    .section-titles::after,
    .section-title::before,
    .section-title::after,
    .memories-title::before,
    .memories-title::after,
    .contact-title::before,
    .contact-title::after,
    .timer-title::before,
    .timer-title::after,
    .tedx-talks-heading::before,
    .tedx-talks-heading::after {
        min-width: 30px;
    }
}

/* =====================================================
   SPEAKERS SUBMENU
   ===================================================== */
.mob-nav-has-sub {
    cursor: pointer;
}

.mob-nav-chevron {
    opacity: 1 !important;
    transform: none !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.mob-nav-has-sub.mob-sub-open .mob-nav-chevron {
    transform: rotate(180deg) !important;
    color: #eb0028 !important;
}

.mob-nav-has-sub.mob-sub-open {
    color: #eb0028;
    padding-left: 0.5rem;
}

.mob-nav-has-sub.mob-sub-open .mob-nav-num {
    color: #eb0028;
}

/* Submenu container */
.mob-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(235, 0, 40, 0.04);
}

.mob-sub-menu.mob-sub-open {
    max-height: 200px;
    opacity: 1;
}

/* Sub items */
.mob-sub-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.9rem 1rem 0.9rem 3.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease, padding-left 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mob-sub-item:last-child {
    border-bottom: none;
}

.mob-sub-item:hover {
    color: #eb0028;
    padding-left: 4rem;
}

.mob-sub-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #eb0028;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mob-sub-item:hover .mob-sub-dot {
    opacity: 1;
    transform: scale(1.4);
}

/* Homepage gallery and sponsor fixes */
.gallery-section-static {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    padding-bottom: clamp(3rem, 7vw, 6rem);
}

.gallery-section-static .memories-title-container {
    padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

.memories-gallery-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(150px, 18vw, 240px);
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.memories-gallery-card {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.memories-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memories-slider {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
}

.memories-slider-viewport {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #111111;
}

.memories-slider-track {
    display: flex;
    transition: transform 420ms ease;
    will-change: transform;
}

.memories-slide {
    flex: 0 0 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
    background: #111111;
}

.memories-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memories-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.memories-slider-btn.prev {
    left: 1rem;
}

.memories-slider-btn.next {
    right: 1rem;
}

.memories-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.memories-slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.memories-slider-dot.is-active {
    width: 28px;
    background: #eb0028;
}

.sponsor-section .logo-container {
    gap: 1.25rem;
}

.sponsor-card {
    width: min(280px, 100%);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1.4rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.sponsor-card img,
.sponsor-section .logo-container .sponsor-card img {
    display: block;
    width: 100%;
    max-width: 220px;
    max-height: 96px;
    object-fit: contain;
    opacity: 1;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    transform: none;
}

.sponsor-section .logo-container .sponsor-card:hover img {
    transform: none;
}

@media (max-width: 900px) {
    .memories-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: clamp(150px, 34vw, 220px);
    }
}

@media (max-width: 768px) {
    .sponsor-section .logo-container {
        gap: 1rem;
    }

    .sponsor-card {
        width: min(260px, calc(100vw - 40px));
        min-height: 130px;
    }
}

@media (max-width: 560px) {
    .memories-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .memories-gallery-card-large,
    .memories-gallery-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .memories-slide {
        aspect-ratio: 4 / 5;
    }

    .memories-slider-btn {
        width: 38px;
        height: 38px;
    }

    .memories-slider-btn.prev {
        left: 0.6rem;
    }

    .memories-slider-btn.next {
        right: 0.6rem;
    }
}
