:root {
    --bg: #050505;
    --text: #ffffff;
    --text-dim: #888888;
    --accent: #ff3300; /* Neon Orange */
    --accent-secondary: #bd00ff; /* Neon Purple */
    --line: rgba(255, 255, 255, 0.1);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor defaults */
}

/* Revert cursor for touch devices */
@media (hover: none) and (pointer: coarse) {
    *, *::before, *::after {
        cursor: auto;
    }
    .cursor-dot, .cursor-outline {
        display: none;
    }
}

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

body.loading {
    overflow: hidden;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
    mix-blend-mode: difference;
    text-align: center;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
}

/* --- Cursor --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%);  <-- Handled in JS now for perf */
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    will-change: transform;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    /* Centering offset handled in JS or via margin */
    margin-left: -4px;
    margin-top: -4px;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    margin-left: -20px;
    margin-top: -20px;
}

body:hover .cursor-outline.hovered {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    /* backdrop-filter can be expensive, use with caution or remove if still laggy */
    backdrop-filter: blur(2px);
    margin-left: -40px;
    margin-top: -40px;
}

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* --- Layout Utils --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Navbar & Mobile Menu --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    transition: transform 0.3s ease-in-out;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    width: 200px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-left: auto; /* Push to the right */
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

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

.highlight-btn {
    background: white;
    color: black !important; /* Force text black */
    border: none;
    font-weight: 800;
}
.highlight-btn span {
    mix-blend-mode: normal !important;
    color: black !important;
}
.highlight-btn:hover {
    background: var(--accent);
    color: white !important;
}
.highlight-btn:hover span {
    color: white !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    margin-left: auto; /* Push to the right */
}
.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050505;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}
.mm-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dim);
    transition: color 0.3s;
    text-transform: uppercase;
}
.mm-link.highlight {
    color: white;
}
.mm-link:hover {
    color: var(--accent);
}

/* Menu Open State */
body.menu-open .mobile-menu-toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
body.menu-open .mobile-menu-toggle .bar:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
}
body.menu-open {
    overflow: hidden; /* Prevent scroll when menu is open */
}


/* --- Buttons --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.cta-button span {
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
    color: white;
}

.btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.cta-button:hover .btn-fill {
    transform: translateY(0);
}

.cta-button:hover {
    border-color: white;
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.8rem;
}

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

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.7) 30%, rgba(5,5,5,0.3) 100%);
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.hero-header h1 {
    font-family: var(--font-display);
    font-size: 9vw;
    line-height: 0.85;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.outline-text {
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
    color: transparent;
    transition: color 0.5s;
}

.hero-header:hover .outline-text {
    color: rgba(255,255,255,0.1);
}

.hero-sub {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--line);
    padding-top: 30px;
}

.hero-sub p {
    max-width: 400px;
    font-size: 1.1rem;
    color: #ccc;
}

.hero-actions {
    display: flex;
    gap: 30px;
    align-items: center;
}

.play-reel {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
}

.play-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-reel:hover .play-icon {
    background: white;
    color: black;
    transform: scale(1.1);
}


/* --- Ticker --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--accent);
    padding: 15px 0;
    transform: rotate(-2deg) scale(1.05);
    margin-bottom: 80px;
}

.ticker {
    white-space: nowrap;
    animation: ticker 20s linear infinite;
    display: inline-block;
}

.ticker-item {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: black;
    padding-right: 40px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- Event Section --- */
.event-container {
    padding-bottom: 100px;
}

.event-card {
    position: relative;
    width: 100%;
    height: 80vh;
    border-radius: 20px;
    overflow: hidden;
}

.event-image-wrapper {
    width: 100%;
    height: 120%;
    position: absolute;
    top: 0;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.event-header {
    margin-bottom: 40px;
}

.event-header h2 {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.stay-tuned-msg {
    margin: 20px 0 40px;
    text-align: center;
}

.stay-tuned-msg h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 51, 0, 0.5);
    letter-spacing: 2px;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 51, 0, 0.2);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blink {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

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

.count-item span {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
}

.count-item label {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

.event-location {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.loc-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.full-width {
    width: 100%;
    max-width: 400px;
    height: 60px;
}

.note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
}

/* --- Experience Section --- */
.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0.85;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: white;
}

.section-header p {
    max-width: 600px;
    font-size: 1.5rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.features-list {
    border-top: 1px solid var(--line);
}

.feature-row {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 2fr 0.5fr;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
}

.feature-row:hover {
    background: rgba(255,255,255,0.03);
}

.f-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dim);
}

.f-title {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
}

.f-desc {
    color: var(--text-dim);
}

.f-icon {
    justify-self: end;
    width: 40px;
    height: 40px;
    color: var(--text-dim);
    transition: color 0.3s;
}

.feature-row:hover .f-icon {
    color: var(--accent);
}

/* --- Gallery Horizontal --- */
.gallery {
    padding: 100px 0;
    overflow: hidden;
}

.gallery-track-wrapper {
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 40px;
    padding-left: 40px;
}

.gallery-slide {
    flex: 0 0 35vw;
    height: 50vh;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: grayscale(100%);
}

.gallery-slide:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.gallery-slide:hover .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

/* --- Community --- */
.community-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.comm-content h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.comm-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 400px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #25D366; /* WhatsApp Green */
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.whatsapp-link:hover {
    border-color: #25D366;
}

.circle-text {
    animation: rotate 20s linear infinite;
}

.circle-text svg {
    fill: white;
    width: 150px;
    height: 150px;
}

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

.partners-strip {
    border-top: 1px solid var(--line);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.partners-strip p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    text-align: center; /* Reinforce centering */
}

.partner-logos img {
    height: 180px; /* Much larger height */
    width: 270px; /* Increased width for consistent size */
    object-fit: contain; /* Ensure images fit without stretching */
    opacity: 0.9; /* More visible by default */
    transition: all 0.3s;
    filter: none; /* Show original colors */
}

.partner-logos img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

/* --- Contact --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 0.9;
}

.socials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
}

.social-item:hover {
    padding-left: 20px;
    color: var(--accent);
    border-color: var(--accent);
}

.social-item span {
    transition: transform 0.3s;
}

.minimal-form {
    padding-top: 20px;
}

.form-row {
    position: relative;
    margin-bottom: 50px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 1.5rem;
    padding: 10px 0;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
}

.form-row label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-dim);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-row input:focus ~ label,
.form-row input:not(:placeholder-shown) ~ label,
.form-row textarea:focus ~ label,
.form-row textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 0.7rem;
    color: var(--accent);
}

.form-row .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--line);
    transition: background 0.3s;
}

.form-row input:focus ~ .line,
.form-row textarea:focus ~ .line {
    background: white;
}

.submit-btn {
    background: white;
    color: black;
    border: none;
    padding: 20px 40px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 50px;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--line);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* --- MOBILE RESPONSIVE QUERIES --- */
@media (max-width: 1024px) {
    /* Tablet & Small Laptop Tweaks */
    .container {
        padding: 0 30px;
    }
    
    .hero-header h1 {
        font-size: 12vw;
    }

    .event-card {
        height: auto;
        min-height: 80vh;
    }

    .event-info-overlay {
        position: relative;
        background: var(--bg);
        padding: 60px 20px;
        backdrop-filter: none;
        border: none;
        inset: auto;
    }
    
    .event-image-wrapper {
        position: relative;
        height: 50vh;
    }

    /* Stack Features */
    .feature-row {
        grid-template-columns: auto 1fr;
        grid-template-areas: 
            "num title"
            "desc desc"
            "icon icon";
        gap: 15px;
        text-align: left;
    }

    .f-num { grid-area: num; font-size: 1.2rem; }
    .f-title { grid-area: title; font-size: 1.8rem; }
    .f-desc { grid-area: desc; }
    .f-icon { grid-area: icon; justify-self: start; margin-top: 10px; }

    /* Contact Layout */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .gallery-slide {
        flex: 0 0 60vw;
    }
}

@media (max-width: 768px) {
    /* Mobile Tweaks (general) */
    .section-padding {
        padding: 60px 0; 
    }

    .container {
        padding: 0 20px;
    }

    /* Navbar */
    .navbar {
        padding: 20px;
        mix-blend-mode: normal; 
    }
    /* Hide desktop nav links */
    .nav-links.desktop-only {
        display: none;
    }
    /* Show hamburger */
    .mobile-menu-toggle {
        display: flex;
    }
    .logo img {
        width: 100px;
        filter: invert(0); 
    }
    
    /* Hero - Centered Alignment & Background */
    .hero {
        height: auto;
        min-height: auto; /* Allow auto height so it collapses to content */
        padding-top: 100px; 
        padding-bottom: 0;
        margin-bottom: 0;
        align-items: flex-start;
        text-align: center;
        background-color: var(--bg);
    }
    .hero-bg-wrapper {
        display: none; 
    }

    .hero-content {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0; /* Ensure no bottom padding in content */
    }
    
    .hero-header h1 {
        font-size: clamp(2.5rem, 11vw, 4rem); 
        letter-spacing: -1px;
        line-height: 0.9;
    }

    .hero-sub {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        border-top: none; 
        margin-top: 20px;
    }
    
    .hero-sub p {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 20px; 
    }
    
    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        padding: 15px 20px;
    }
    
    .play-reel {
        justify-content: center;
        font-size: 0.9rem;
    }
    .play-reel .play-icon {
        width: 40px;
        height: 40px;
    }

    .scroll-indicator {
        display: none; 
    }

    /* Event Section - Centered and shorter */
    .next-event {
        padding-top: 0; 
        margin-top: -30px; /* Negative margin to pull it UP into the hero space */
        position: relative;
        z-index: 10;
    }
    .event-container {
        padding-bottom: 40px; 
    }
    .ticker-wrap {
        margin-bottom: 20px;
        margin-top: 0; 
        transform: rotate(0deg); 
    }
    
    .event-card {
        min-height: auto; 
        height: auto; 
        background: var(--bg); 
        border: none; 
    }

    .event-image-wrapper {
        display: none; 
    }

    .event-info-overlay {
        position: relative; 
        background: none; 
        padding: 40px 20px;
        text-align: center;
        backdrop-filter: none;
        border: none; 
    }
    .stay-tuned-msg h3 {
        font-size: 1.8rem; /* Smaller for mobile */
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
        padding: 0 10px;
        justify-content: center;
        margin-bottom: 30px; 
    }

    .count-item span {
        font-size: 1.8rem;
    }
    
    .count-item label {
        font-size: 0.7rem;
    }

    .event-location {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        font-size: 0.9rem;
        margin-bottom: 20px; 
    }
    
    .full-width {
        max-width: 100%;
    }

    /* Experience - Centered */
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .section-header h2 {
        font-size: clamp(2.5rem, 9vw, 3.5rem);
    }
    .section-header p {
        font-size: 1rem;
        margin: 0 auto 20px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "icon"
            "title"
            "desc"
            "num";
        gap: 10px;
        text-align: center;
        padding: 40px 0;
    }
    
    .f-icon { grid-area: icon; justify-self: center; margin-bottom: 10px; }
    .f-title { grid-area: title; font-size: 1.5rem; }
    .f-desc { grid-area: desc; }
    .f-num { grid-area: num; margin-top: 10px; font-size: 0.9rem; opacity: 0.5; }


    /* Gallery */
    .gallery {
        padding: 40px 0;
    }
    .gallery-track {
        padding-left: 20px;
        padding-right: 20px;
        gap: 15px;
    }
    .gallery-slide {
        flex: 0 0 85vw; 
        height: 55vh;
    }
    .gallery-slide img {
        filter: grayscale(0%);
        transform: none;
        transition: none;
        will-change: auto;
    }
    .slide-caption {
        opacity: 1; 
        transform: translateY(0);
        font-size: 1rem;
        left: 15px;
        bottom: 15px;
    }

    /* Community */
    .community-box {
        padding: 40px 20px;
        text-align: center;
        flex-direction: column;
    }
    
    .comm-content h2 {
        font-size: clamp(2.5rem, 9vw, 3rem);
    }
    .comm-content p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .whatsapp-link {
        font-size: 0.9rem;
    }
    
    .comm-visual {
        margin-top: 30px;
    }
    
    .circle-text svg {
        width: 100px;
        height: 100px;
    }
    
    .partners-strip {
        padding-top: 30px;
        gap: 20px;
    }

    .partner-logos {
        gap: 20px;
    }
    .partner-logos span {
        font-size: 0.8rem;
    }

    /* Contact - Centered Header */
    .contact-info {
        text-align: center;
    }
    .contact-info h2 {
        font-size: clamp(2.5rem, 9vw, 3.5rem);
        margin-bottom: 40px;
    }
    .socials-list {
        align-items: stretch;
    }
    .social-item {
        font-size: 1rem;
        padding: 15px 0;
        justify-content: space-between;
    }

    .form-row {
        margin-bottom: 30px;
        text-align: left;
    }
    .form-row input, .form-row textarea {
        font-size: 1rem;
    }
    .form-row label {
        font-size: 0.8rem;
    }
    .submit-btn {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 30px 0;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        font-size: 0.7rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px; 
    }

    /* Hero */
    .hero-header h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem); 
        letter-spacing: -0.5px;
    }
    .hero-sub p {
        font-size: 0.9rem;
    }
    
    /* Preloader Mobile */
    .preloader-text {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .loading-bar {
        width: 120px;
    }

    /* Event Section */
    .event-info-overlay {
        padding: 30px 15px;
    }
    .event-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem); 
    }
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
        padding: 0;
    }
    .count-item span {
        font-size: 1.5rem;
    }
    .count-item label {
        font-size: 0.6rem;
    }
    .live-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    .event-location {
        font-size: 0.8rem;
    }
    
    /* Experience */
    .section-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .section-header p {
        font-size: 0.9rem;
    }
    .f-title {
        font-size: 1.2rem;
    }
    
    /* Gallery */
    .gallery-slide {
        flex: 0 0 90vw; 
        height: 50vh;
    }
    .slide-caption {
        font-size: 0.9rem;
    }
    
    /* Community */
    .comm-content h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .comm-content p {
        font-size: 0.9rem;
    }
    .whatsapp-link {
        font-size: 0.8rem;
    }
    .partners-strip p {
        font-size: 0.7rem;
    }
    .partner-logos span {
        font-size: 0.7rem;
    }
    .circle-text svg {
        width: 80px;
        height: 80px;
    }

    /* Contact */
    .contact-info h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .social-item {
        font-size: 0.9rem;
        padding: 15px 0;
    }
    .form-row {
        margin-bottom: 25px;
    }
    .form-row input, .form-row textarea {
        font-size: 0.9rem;
    }
    .submit-btn {
        font-size: 0.8rem;
        padding: 12px 15px;
    }
}
