/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    background: #000;
}

::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.8);
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5e5e;
}

/* --- ARTIX 2026 CONSOLIDATED STYLES --- */

/* 1. CORE DEFAULTS */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

:root {
    --primary-color: #ff3b3b;
    --dark-bg: #121212;
    --light-text: #f4f4f4;
    --accent-gray: #1e1e1e;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. NAVIGATION (HUD Redesign) */
.header-hud {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    pointer-events: none;
}

.side-logo {
    pointer-events: auto;
    position: absolute;
}

.left-logo {
    left: 0;
}

.right-logo {
    right: 0;
}

.side-logo img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255, 59, 59, 0.4));
    transition: transform 0.3s ease;
}

.left-logo img {
    height: 120px;
}

.side-logo:hover img {
    transform: scale(1.05);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    pointer-events: auto;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(255, 59, 59, 0.3);
    height: 80px;
    border-radius: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links div {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    font-family: monospace;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    margin-left: 20px;
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 59, 59, 0.5);
    background: #ff4d4d;
}

.hamburger {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    pointer-events: auto;
}

/* 3. HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.back-video {
    position: absolute;
    top: 0;
    left: -2%;
    width: 105%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Mobile Hero Branding (Hidden on desktop) */
.mobile-hero-branding {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 100;
}

.m-logo-left {
    height: 80px;
    width: auto;
}

.m-logo-right {
    height: 55px;
    width: auto;
    float: right;
}

.hero-content-wrapper {
    z-index: 2;
    position: relative;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-event-name {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #dfdfdf;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    margin-bottom: 10px;
    border: none;
    padding: 0;
    background: linear-gradient(90deg, #dfdfdf, #ffffff, #888, #dfdfdf);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-text 5s infinite linear;
}

@keyframes shimmer-text {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

.hero-tagline {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn-register-massive {
    background-color: rgb(194, 69, 71);
    border: none;
    color: rgb(215, 215, 215);
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.btn-register-massive:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 59, 59, 0.7), 0 0 60px rgba(255, 59, 59, 0.4);
    transform: translateY(-3px) scale(1.05);
    color: white;
}

/* TECH PARTICLES */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-family: monospace;
    font-size: 1.5rem;
    animation: float-particle linear infinite;
}

.p1 {
    top: 20%;
    left: 10%;
    animation-duration: 15s;
}

.p2 {
    top: 60%;
    right: 15%;
    animation-duration: 25s;
    font-size: 2rem;
}

.p3 {
    bottom: 30%;
    left: 20%;
    animation-duration: 20s;
}

.p4 {
    top: 15%;
    right: 25%;
    animation-duration: 18s;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(45deg);
        opacity: 0;
    }
}

.btn-ticket {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6d6d 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
    animation: btn-gradient-shift 3s linear infinite, glow-pulse 2s infinite alternate;
}

@keyframes btn-gradient-shift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
    }

    100% {
        box-shadow: 0 15px 45px rgba(255, 59, 59, 0.7), 0 0 20px rgba(255, 59, 59, 0.5);
    }
}

.btn-ticket:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 59, 59, 0.8), 0 0 30px rgba(255, 59, 59, 0.6);
}

.btn-small {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
}

/* 4. TICKER */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    backdrop-filter: blur(5px);
}

.ticker {
    display: inline-block;
    animation: ticker-animation 25s linear infinite;
}

.ticker-item {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-right: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-style: italic;
}

.ticker-item.hollow {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

@keyframes ticker-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 5. GENERAL SECTION & REVEAL */
section {
    padding: 100px 10%;
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* 6. ABOUT SECTION */
.about {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
    padding-bottom: 140px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-body p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    border-top: 1px solid rgba(255, 59, 59, 0.2);
    padding-top: 20px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.about-img {
    width: 100%;
    height: 500px;
    background: url('imgs/Aboutus.jpeg') center/cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 59, 59, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* 7. CARBON BLADE DIVIDER */
.blade-divider {
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: skewY(-3deg);
    position: relative;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.8);
    margin-top: -60px;
}

/* 8. HIGHLIGHTS SECTION */
.highlights-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
    padding-top: 140px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 59, 59, 0.2);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouseX, -100px) var(--mouseY, -100px),
            rgba(255, 59, 59, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
    pointer-events: none;
}

.highlight-card:hover::after {
    opacity: 1;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    z-index: 1;
}

.highlight-card>* {
    position: relative;
    z-index: 2;
}

.highlight-card:hover::before {
    left: 150%;
}

.highlight-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 59, 59, 0.08);
    border-color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(255, 59, 59, 0.2);
}

.highlight-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 59, 59, 0.4));
}

.highlight-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.highlight-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.highlight-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 9. HEX-GRID MESH DIVIDER */
.hex-divider {
    width: 100%;
    height: 60px;
    background-color: #0a0a0a;
    background-image:
        radial-gradient(circle at center, rgba(255, 59, 59, 0.05) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ff3b3b' fill-opacity='0.1' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9l11 6.35 11-6.35V30.1l-11 6.35-11-6.35V17.9z'/%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 59, 59, 0.3);
    border-bottom: 1px solid rgba(255, 59, 59, 0.3);
    z-index: 5;
}

.hex-pulse {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 59, 0.15), transparent);
    animation: hex-scan 4s linear infinite;
}

@keyframes hex-scan {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* 10. GALLERY SECTION */
#gallery {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
    padding-top: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img,
.gallery-vid,
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    filter: brightness(0.8);
}

.gallery-item:hover img,
.gallery-item:hover .gallery-vid,
.gallery-item:hover .gallery-video {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Mobile Gallery CTA (Hidden on desktop) */
.mobile-gallery-cta {
    display: none;
    text-align: center;
    margin: 40px auto;
}

.btn-massive {
    padding: 20px 45px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

/* 11. COUNTDOWN */
#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.time-box {
    background: rgba(15, 15, 15, 0.8);
    padding: 20px 30px;
    border-radius: 8px;
    min-width: 120px;
    text-align: center;
    border: 1px solid rgba(255, 59, 59, 0.2);
    box-shadow: inset 0 0 20px rgba(255, 59, 59, 0.05), 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.time-box span {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    display: block;
    line-height: 1;
}

.time-box p {
    color: var(--primary-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: bold;
}

.hud-accent {
    font-family: monospace;
    color: var(--primary-color);
    font-size: 0.8rem;
    opacity: 0.7;
    display: block;
    margin-bottom: -30px;
    text-align: center;
    letter-spacing: 3px;
}

/* 12. EVENT DETAILS (Replaced Schedule) */
.schedule-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #151525 50%, #0a0a0a 100%);
    position: relative;
    padding-top: 120px;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 59, 59, 0.15);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card-premium .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 59, 59, 0.08);
    box-shadow: 0 25px 50px rgba(255, 59, 59, 0.15);
}

.event-card-premium .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 59, 59, 0.2);
    padding-bottom: 15px;
}

.event-card-premium .card-header i {
    font-size: 2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(255, 59, 59, 0.5));
}

.event-card-premium .card-header h3 {
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.event-card-premium .event-date {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.card-body {
    flex: 1;
}

.detail-row.registration-highlight {
    background: rgba(255, 59, 59, 0.1);
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 59, 59, 0.3);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-row.registration-highlight strong {
    color: white;
    font-size: 0.9rem;
}

.detail-row.registration-highlight p {
    margin: 0 !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

.detail-row {
    margin-bottom: 15px;
}

.detail-row strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-row p,
.detail-row ul {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
}

.detail-row ul {
    list-style: none;
    padding-left: 0;
}

.detail-row li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: 8px;
}

.event-overview {
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.coordinator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.phone-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.phone-links a {
    white-space: nowrap;
}

.coordinator a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.coordinator a:hover {
    color: var(--primary-color);
}

/* 13. LOCATION & MAP */
.location-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
    padding: 100px 10%;
    position: relative;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: rgba(20, 20, 35, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 59, 59, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.location-info {
    padding: 60px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 15, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 59, 59, 0.1);
}

.location-info h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.location-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.6);
}

.location-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.loc-detail i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.loc-detail p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.4;
}

.loc-detail strong {
    color: white;
    display: block;
    margin-bottom: 2px;
}

.btn-directions {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
    text-align: center;
}

.btn-directions:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.4);
}

.map-container {
    width: 100%;
    height: 550px;
    filter: grayscale(100%) invert(100%) contrast(90%);
    position: relative;
    z-index: 1;
}

.leaflet-container {
    background: #121212 !important;
}

.map-popup h4 {
    color: #ff3b3b;
    margin-bottom: 5px;
}

.map-popup p {
    color: #333;
    margin: 0;
}

/* 14. PREMIUM FOOTER */
footer {
    background: linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 5% 40px;
    border-top: 1px solid rgba(255, 59, 59, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 15px var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.6fr;
    /* Refined proportions */
    gap: 60px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 900;
    position: relative;
    color: #fff;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.footer-brand .logo-text {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #999;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-links a::before {
    content: '›';
    color: var(--primary-color);
    font-weight: bold;
}

.insta-mini-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.insta-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 12px;
    width: fit-content;
    margin: 0 auto;
    color: #eee;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.insta-mini-card:hover {
    background: rgba(255, 59, 59, 0.1);
    border-color: rgba(255, 59, 59, 0.3);
    transform: translateX(10px);
    color: white;
}

.insta-mini-card i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-contact .coordinator-info {
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.footer-contact .coordinator-info:hover {
    background: rgba(255, 59, 59, 0.03);
    border-color: rgba(255, 59, 59, 0.2);
    transform: translateX(5px);
}

.coord-row {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.footer-contact .coord-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 170px;
    /* Reduced to match smaller scale */
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact .coord-phone {
    color: #999;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-contact .coord-phone:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(255, 59, 59, 0.3);
}

.footer-contact .coord-role {
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 14px;
    font-size: 0.8rem;
    text-align: center;
}

.footer-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.footer-actions .wa-link:hover {
    background: #25D366;
}

.footer-actions .tel-link:hover {
    background: var(--primary-color);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom p {
    letter-spacing: 0.5px;
}

.developer-signature {
    position: relative;
    padding: 8px 20px;
    background: rgba(255, 59, 59, 0.03);
    border: 1px solid rgba(255, 59, 59, 0.15);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: default;
    overflow: hidden;
    order: 2;
}

@media (min-width: 992px) {
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        width: 100%;
    }
    .footer-bottom p { text-align: left; order: 1; }
    .developer-signature { order: 2; margin: 0 auto; }
    .footer-legal { text-align: right; order: 3; }
}

.developer-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.developer-signature:hover {
    background: rgba(255, 59, 59, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.3), 0 0 20px rgba(255, 59, 11, 0.2);
}

.developer-signature:hover::before {
    left: 100%;
}

.developer-signature span {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #aaa;
}

.designer-name {
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.designer-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.3s ease;
}

.developer-signature:hover .designer-name::after {
    width: 100%;
}

.developer-signature i {
    color: var(--primary-color);
    font-size: 0.9rem;
    animation: heart-beat 1.5s infinite;
}

@keyframes heart-beat {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Parallax Shapes */
.parallax-shape {
    position: absolute;
    border: 2px solid rgba(255, 59, 59, 0.1);
    z-index: 0;
    pointer-events: none;
}

.shape-circle {
    border-radius: 50%;
    width: 400px;
    height: 400px;
    right: -50px;
    top: 10%;
    opacity: 0.5;
}

.shape-cross {
    width: 200px;
    height: 200px;
    left: 5%;
    top: 40%;
    background:
        linear-gradient(to right, transparent 48%, rgba(255, 59, 59, 0.1) 48%, rgba(255, 59, 59, 0.1) 52%, transparent 52%),
        linear-gradient(to bottom, transparent 48%, rgba(255, 59, 59, 0.1) 48%, rgba(255, 59, 59, 0.1) 52%, transparent 52%);
    border: none;
}

.shape-grid {
    width: 300px;
    height: 300px;
    right: 5%;
    bottom: -50px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    border: none;
}

/* 15. MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: rgba(20, 20, 25, 0.98);
    border: 1px solid rgba(255, 59, 59, 0.4);
    border-radius: 12px;
    width: 85%;
    max-width: 550px;
    max-height: 80vh;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2010;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 59, 59, 0.2);
    padding-bottom: 20px;
}

.modal-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.modal-header h2 {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 2rem;
}

.modal-body h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.modal-body p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal-body li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #eee;
}

.modal-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.modal-footer {
    margin-top: 40px;
    text-align: center;
}

.game-highlight {
    color: #ff8e8e;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 59, 59, 0.3);
    padding: 0 2px;
    transition: all 0.3s ease;
}

.game-highlight:hover {
    color: #fff;
    border-bottom-color: var(--primary-color);
    text-shadow: 0 0 8px rgba(255, 59, 59, 0.6);
}


/* ================================================================
   RESPONSIVE — NO NESTED MEDIA QUERIES (flat declarations only)
   ================================================================ */

/* TABLET — 1200px */
@media (max-width: 1200px) {

    .schedule-grid,
    .event-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* TABLET — 992px */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        height: 350px;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .location-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 59, 59, 0.1);
        padding: 40px;
    }

    .map-container {
        height: 350px;
    }

    .gallery-grid,
    .event-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-tagline {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-event-name {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}

/* MOBILE — 768px */
@media (max-width: 768px) {

    section {
        padding: 60px 5%;
        overflow-x: hidden;
    }

    h2 {
        font-size: 1.8rem;
    }

    /* --- HUD NAV --- */
    .header-hud {
        display: none;
        top: 12px;
        width: 94%;
        /* Reset centered floating pill to a full-width row */
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: auto;
        /* Make it a flat row */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: auto;
        padding: 8px 14px;
        background: rgba(10, 10, 15, 0.82);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 59, 59, 0.2);
        border-radius: 40px;
    }

    /* Pull logos out of absolute flow into flex row */
    .side-logo {
        position: relative;
        left: auto;
        right: auto;
        pointer-events: auto;
    }

    .left-logo img {
        height: 40px;
        width: auto;
    }

    .right-logo img {
        height: 26px;
        width: auto;
    }

    /* Nav becomes just a hamburger button wrapper */
    nav {
        display: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        height: auto;
        padding: 0;
        width: auto;
        pointer-events: auto;
    }

    nav.scrolled {
        background: transparent;
        border-bottom: none;
        height: auto;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(255, 59, 59, 0.15);
        border-radius: 50%;
        border: 1px solid rgba(255, 59, 59, 0.3);
        font-size: 1rem;
    }

    /* Full-screen overlay menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 14px 0;
        letter-spacing: 3px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        font-size: 1.2rem !important;
        padding: 12px 30px !important;
    }

    /* --- HERO --- */
    .hero {
        padding-top: 70px;
        padding-bottom: 40px;
        min-height: 80svh;
        background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0f0f0f 100%);
        background-image:
            linear-gradient(rgba(255, 59, 59, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 59, 59, 0.05) 1px, transparent 1px),
            linear-gradient(45deg, rgba(255, 59, 59, 0.02) 25%, transparent 25%, transparent 75%, rgba(255, 59, 59, 0.02) 75%, rgba(255, 59, 59, 0.02)),
            linear-gradient(-45deg, rgba(255, 59, 59, 0.02) 25%, transparent 25%, transparent 75%, rgba(255, 59, 59, 0.02) 75%, rgba(255, 59, 59, 0.02));
        background-size: 40px 40px, 40px 40px, 80px 80px, 80px 80px;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px);
        pointer-events: none;
    }

    .back-video {
        display: none;
    }

    .mobile-hero-branding {
        display: block;
    }

    .hero-content-wrapper {
        width: 100%;
        padding: 0 20px;
    }

    .hero-event-name {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    }

    .hero-tagline {
        font-size: clamp(2rem, 8.5vw, 3rem);
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .btn-register-massive {
        padding: 14px 32px;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    /* --- TICKER --- */
    .ticker-item {
        font-size: 0.85rem;
        margin-right: 30px;
        letter-spacing: 2px;
    }

    /* --- ABOUT --- */
    .about {
        padding-bottom: 90px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .about-img {
        height: 240px;
        border-radius: 12px;
    }

    /* --- HIGHLIGHTS --- */
    .highlights-section {
        padding-top: 90px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .highlight-card {
        padding: 28px 22px;
    }

    /* --- GALLERY --- */
    .gallery-grid {
        display: none;
    }

    .mobile-gallery-cta {
        display: block;
    }

    /* --- SCHEDULE --- */
    .schedule-section {
        padding-top: 80px;
    }

    .schedule-grid,
    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .day-schedule {
        padding: 28px 18px;
    }

    .day-schedule h3 {
        font-size: 1.15rem;
        margin-bottom: 18px;
    }

    .schedule-item {
        gap: 12px;
        padding: 11px 0;
    }

    .schedule-item .time {
        min-width: 72px;
        font-size: 0.82rem;
    }

    .schedule-item .event {
        font-size: 0.86rem;
    }

    /* --- EVENT DETAILS --- */
    .event-card-premium {
        padding: 22px 18px;
    }

    .event-card-premium h3 {
        font-size: 1.2rem;
    }

    .event-overview {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .detail-row strong {
        font-size: 0.85rem;
    }

    .detail-row ul li,
    .detail-row p {
        font-size: 0.8rem;
    }

    /* --- COUNTDOWN --- */
    #countdown {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    #countdown .time-box {
        flex: 1 1 calc(50% - 5px);
        min-width: unset;
        padding: 14px 8px;
    }

    #countdown .time-box span {
        font-size: 1.9rem;
    }

    /* --- LOCATION --- */
    .location-section {
        padding: 60px 5%;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 32px 22px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 59, 59, 0.15);
    }

    .location-info h2 {
        font-size: 1.4rem;
    }

    .location-info h3 {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .map-container {
        height: 280px;
    }

    /* --- FOOTER --- */
    footer {
        padding: 60px 8% 30px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .footer-col h4 {
        display: inline-block;
        margin-bottom: 25px;
        font-size: 1.1rem;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }

    .footer-brand .logo-text {
        font-size: 1.6rem;
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
        width: 100%;
        padding: 5px 0;
    }

    .insta-mini-card {
        margin: 0 auto;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .footer-actions {
        flex-direction: column;
        gap: 12px;
        max-width: 280px;
        margin: 25px auto 0;
    }

    .footer-actions a {
        padding: 14px;
        font-size: 1rem;
    }

    .footer-bottom {
        margin-top: 50px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 10px;
    }

    /* --- MODAL --- */
    .modal-overlay {
        padding: 20px;
        align-items: center;
    }

    .modal-container {
        width: 80%;
        max-width: 300px;
        margin: auto;
        border-radius: 12px;
        max-height: 55vh;
        display: flex;
        flex-direction: column;
        border-width: 1px;
    }

    .modal-content {
        padding: 15px 12px;
    }

    .modal-header h2 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .modal-header i {
        font-size: 1.2rem;
    }

    .modal-body {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 1.2rem;
    }

    .modal-footer .btn-ticket {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

/* SMALL MOBILE — 480px */
@media (max-width: 480px) {
    .header-hud {
        width: 96%;
        padding: 6px 12px;
    }

    .left-logo img {
        height: 34px;
    }

    .right-logo img {
        height: 22px;
    }

    .hero-tagline {
        font-size: clamp(1.85rem, 7.5vw, 2.5rem);
    }

    .hero-event-name {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    /* Gallery single column on small phones */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .insta-mini-card {
        margin: 0 auto;
    }

    .coordinator-info {
        text-align: center;
    }

    .coord-row {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }

    .footer-contact .coord-name {
        min-width: unset;
        justify-content: center;
    }

    .footer-contact .coord-phone {
        margin-left: 0;
        justify-content: center;
    }

    .footer-contact .coord-role {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Reduce hover transforms that can cause layout shifts */
    .highlight-card:hover {
        transform: translateY(-6px);
    }

    .day-schedule:hover {
        transform: none;
    }

    /* Hide parallax shapes to prevent x-overflow */
    .parallax-shape {
        display: none;
    }
}

/* VERY SMALL — 360px */
@media (max-width: 360px) {
    .header-hud {
        width: 98%;
        padding: 5px 10px;
        border-radius: 30px;
    }

    .left-logo img {
        height: 28px;
    }

    .right-logo {
        display: none;
    }

    .hero-tagline {
        font-size: 1.65rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .btn-register-massive {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    #countdown .time-box {
        flex: 1 1 100%;
    }

    #countdown .time-box span {
        font-size: 2.2rem;
    }

    .schedule-item .time {
        min-width: 64px;
        font-size: 0.78rem;
    }
}