@charset "UTF-8";

/* ==========================================================================
   CSS VARIABLES & RESET (V3 FUNCTIONAL TECH FEST)
   ========================================================================== */
:root {
    --violet-dark: #05020D;
    --violet-deep: #16052B;
    --violet-base: #4C1D95;
    --violet-bright: #7C3AED;
    --violet-neon: #A855F7;
    --magenta: #D946EF;
    
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --line: rgba(255, 255, 255, 0.15);
    
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    font-size: 16px;
    background-color: var(--violet-dark);
    scroll-behavior: smooth;
}

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

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
body:not(.is-mobile) { cursor: none; }
body:not(.is-mobile) a, body:not(.is-mobile) button { cursor: none; }

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--violet-neon);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cursor-text {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--violet-dark);
    opacity: 0;
    transition: opacity 0.2s;
    letter-spacing: 0.05em;
}

.cursor-hover .cursor-outline {
    width: 50px;
    height: 50px;
    border-color: var(--violet-neon);
    background-color: rgba(168, 85, 247, 0.1);
}

.cursor-text-active .cursor-outline {
    width: 70px;
    height: 70px;
    background-color: var(--violet-neon);
    border-color: var(--violet-neon);
}

.cursor-text-active .cursor-text {
    opacity: 1;
}

/* ==========================================================================
   ATMOSPHERE & GRID
   ========================================================================== */
.ambient-light {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    pointer-events: none;
    will-change: transform;
}

.main-light {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    top: -10vw;
    left: -10vw;
}

.secondary-light {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, transparent 70%);
    bottom: -10vw;
    right: -10vw;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    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: 50px 50px;
    pointer-events: none;
    z-index: -2;
    opacity: 0.5;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ==========================================================================
   ENERGY CORE (SIGNATURE VISUAL)
   ========================================================================== */
.energy-core-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 0;
    pointer-events: none;
}

.energy-core {
    position: relative;
    width: 100%;
    height: 100%;
    animation: coreFloat 8s ease-in-out infinite;
}

.core-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--magenta) 0%, var(--violet-neon) 30%, transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
    animation: corePulse 4s ease-in-out infinite alternate;
}

.core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(217, 70, 239, 0.3);
}

.core-ring.ring-1 {
    animation: spin 20s linear infinite;
}

.core-ring.ring-2 {
    inset: 10%;
    border: 1px solid rgba(168, 85, 247, 0.2);
    animation: spinReverse 15s linear infinite;
}

@keyframes coreFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes corePulse {
    0% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

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

@keyframes spinReverse {
    to { transform: rotate(-360deg); }
}

/* ==========================================================================
   HELPERS & UTILS
   ========================================================================== */
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-auto { margin-top: auto; }
.mt-4 { margin-top: 2rem; }
.w-full { width: 100%; }

.accent-gradient {
    background: linear-gradient(135deg, var(--violet-neon), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-mono);
    color: var(--violet-neon);
    letter-spacing: 0.1em;
    font-size: 18px;
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: none;
    text-align: center;
}

.btn-primary {
    background: var(--text-main);
    color: var(--violet-dark);
}

.btn-primary:hover {
    background: var(--violet-neon);
    color: var(--text-main);
}

.btn-glow {
    background: var(--violet-bright);
    color: var(--text-main);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    border: 1px solid var(--violet-neon);
}

.btn-glow:hover {
    background: var(--violet-neon);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--violet-neon);
    background: rgba(168, 85, 247, 0.1);
}

.btn-giant {
    padding: 24px 48px;
    font-size: 18px;
}

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10vw;
    background: rgba(5, 2, 13, 0.95);
    backdrop-filter: blur(20px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.mobile-close-btn {
    position: absolute;
    top: 40px;
    right: 4vw;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
}

.mobile-close-btn span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-main);
}
.mobile-close-btn span:first-child { transform: rotate(45deg); }
.mobile-close-btn span:last-child { transform: rotate(-45deg); }

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, color 0.3s;
}

.mobile-nav.active .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}
.mobile-nav-links a:hover { color: var(--violet-neon); }

.mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-nav-links li:nth-child(5) a { transition-delay: 0.3s; }
.mobile-nav-links li:nth-child(6) a { transition-delay: 0.35s; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: padding 0.3s, background 0.3s;
}

.header.scrolled {
    padding: 16px 0;
    background: rgba(5, 2, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-container {
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
}

.logo-text { font-size: 24px; font-weight: 700; color: var(--text-main); }
.logo-year { font-family: var(--font-mono); font-size: 14px; color: var(--violet-neon); }

.desktop-nav {
    display: none;
    gap: 32px;
}

.desktop-nav a {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.desktop-nav a:hover { color: var(--violet-neon); }

.header-actions { display: flex; align-items: center; gap: 20px; }

.hamburger {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: none;
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background: var(--text-main);
}

@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
    .hamburger { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 4vw 60px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-dept-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.tech-badge {
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.05);
    letter-spacing: 0.05em;
}

.tech-badge.alt {
    border-color: var(--violet-neon);
    color: var(--violet-neon);
    background: rgba(168, 85, 247, 0.1);
}

.hero-title-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.hero-title.massive {
    font-family: var(--font-display);
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.hero-title.massive::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--text-main);
    -webkit-text-stroke: 0;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.hero-title.massive .accent-gradient {
    background: linear-gradient(90deg, var(--violet-neon), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0;
}

.hero-theme {
    font-family: var(--font-mono);
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-dates {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.date-block {
    display: flex;
    flex-direction: column;
    padding: 12px 24px;
    border: 1px solid var(--line);
}

.date-block.highlight {
    border-color: var(--violet-bright);
    background: rgba(124, 58, 237, 0.1);
}

.db-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.date-block.highlight .db-label { color: var(--violet-neon); }

.db-val {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   THE EVENT AT A GLANCE
   ========================================================================== */
.glance-section {
    padding: 8vw 4vw;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, var(--violet-deep) 0%, var(--violet-dark) 100%);
    position: relative;
    overflow: hidden;
}

.glance-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4vw;
    align-items: center;
}

.glance-left {
    flex: 1;
    min-width: 300px;
}

.glance-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
}

.glance-right {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.g-row {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}
.g-row:last-child { border-bottom: none; }

.g-val-large {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 700;
    line-height: 0.8;
}

.g-date-sub {
    display: flex;
    flex-direction: column;
    font-family: var(--font-mono);
    font-size: clamp(16px, 2vw, 24px);
    color: var(--violet-neon);
    letter-spacing: 0.1em;
}

.g-lbl {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.g-val {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
}

.g-val-huge {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1;
}

.g-stats-row {
    display: flex;
    gap: 4rem;
}

.g-stat {
    display: flex;
    flex-direction: column;
}

.g-val-mid {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
}

/* ==========================================================================
   EVENT COUNTDOWN
   ========================================================================== */
.countdown-section {
    padding: 10vw 4vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.cd-main-title {
    font-family: var(--font-mono);
    font-size: clamp(14px, 2vw, 20px);
    color: var(--violet-neon);
    letter-spacing: 0.2em;
    margin-bottom: 4vw;
}

.cd-grid {
    display: flex;
    justify-content: center;
    gap: 6vw;
    flex-wrap: wrap;
}

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

.cd-val {
    font-family: var(--font-display);
    font-size: clamp(64px, 12vw, 160px);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(217, 70, 239, 0.2);
}

.cd-lbl {
    font-family: var(--font-mono);
    font-size: clamp(12px, 1.5vw, 16px);
    color: var(--text-muted);
    letter-spacing: 0.2em;
    margin-top: 1rem;
}

/* ==========================================================================
   EVENTS (TECH FEST STYLE, HORIZONTAL)
   ========================================================================== */
.events-section {
    position: relative;
    padding-top: 4vw;
}

.events-header {
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4vw;
}

.events-tracker {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--text-muted);
    text-align: right;
}
.current-event-num { color: var(--text-main); font-weight: 700; }
.scroll-hint {
    display: block;
    font-size: 12px;
    color: var(--violet-neon);
    margin-top: 8px;
}

.events-wrapper {
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.events-track {
    display: flex;
    padding: 0 10vw;
    gap: 4vw;
    height: 100%;
}

.event-panel {
    width: 60vw;
    height: 100%;
    flex-shrink: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: rgba(22, 5, 43, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s, border-color 0.4s;
}

.event-panel:hover {
    transform: scale(1.02);
    background: rgba(76, 29, 149, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}

.ep-bg-num {
    position: absolute;
    top: -10%;
    right: -5%;
    font-family: var(--font-display);
    font-size: clamp(200px, 30vw, 400px);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    transition: color 0.4s, transform 0.4s;
}

.event-panel:hover .ep-bg-num {
    color: rgba(168, 85, 247, 0.05);
    transform: scale(1.05) translate(-10px, 10px);
}

.ep-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 4vw;
    height: 100%;
    background: rgba(5, 2, 13, 0.6);
    backdrop-filter: blur(10px);
}

/* Energy Backgrounds for panels */
.bg-energy-1 { background: linear-gradient(180deg, rgba(76, 29, 149, 0.4) 0%, transparent 100%); }
.bg-energy-2 { background: linear-gradient(180deg, rgba(168, 85, 247, 0.4) 0%, transparent 100%); }
.bg-energy-3 { background: linear-gradient(180deg, rgba(124, 58, 237, 0.4) 0%, transparent 100%); }
.bg-energy-4 { background: linear-gradient(180deg, rgba(217, 70, 239, 0.4) 0%, transparent 100%); }

.ep-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vw;
}

.ep-num {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--text-muted);
}

.ep-badge {
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}
.ep-badge.technical { background: var(--violet-bright); color: var(--text-main); }
.ep-badge.non-technical { background: var(--magenta); color: var(--text-main); }

.ep-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.ep-micro {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2vw;
}

.m-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 4px 8px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot.live {
    width: 6px; height: 6px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
}

.ep-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ep-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 2vw;
    max-width: 80%;
}

.ep-specs {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 2vw;
}

.ep-specs li {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
}

.ep-specs .lbl {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 4px;
}

@media (max-width: 1024px) {
    .events-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .events-wrapper { 
        height: auto; 
        align-items: stretch; 
        padding-bottom: 20px;
    }
    .events-track {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 4vw 20px 4vw;
        gap: 4vw;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .events-track::-webkit-scrollbar { height: 6px; }
    .events-track::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 4px; }
    .events-track::-webkit-scrollbar-thumb { background: var(--violet-neon); border-radius: 4px; }
    .event-panel { 
        width: 85vw;
        height: auto; 
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    .ep-specs { grid-template-columns: 1fr; }
    .ep-inner { padding: 8vw 6vw; }
}

/* ==========================================================================
   PRIZES
   ========================================================================== */
.prizes-section {
    padding: 8vw 4vw;
    border-top: 1px solid var(--line);
}

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

.prize-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2vw;
    margin-top: 6vw;
}

.prize-tier {
    border: 1px solid var(--line);
    padding: 3vw;
    text-align: center;
    position: relative;
    border-radius: 8px;
    background: var(--violet-deep);
    flex: 1;
}

.prize-tier.spotlight {
    border-color: var(--violet-bright);
    background: rgba(76, 29, 149, 0.4);
    transform: translateY(-2vw);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pt-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 80%);
    pointer-events: none;
}

.pt-amount {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 64px);
    font-weight: 700;
    color: var(--violet-neon);
    margin-bottom: 8px;
}

.spotlight .pt-amount {
    font-size: clamp(40px, 5vw, 80px);
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.pt-label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
}
.spotlight .pt-label { color: var(--violet-neon); font-weight: 700; }

@media (max-width: 1024px) {
    .prize-showcase { flex-direction: column; align-items: stretch; gap: 4vw; }
    .prize-tier.spotlight { transform: none; order: -1; }
}

/* ==========================================================================
   REGISTRATION (CLIMAX)
   ========================================================================== */
.registration-section {
    padding: 10vw 4vw;
    background: linear-gradient(180deg, transparent, rgba(76, 29, 149, 0.2));
    border-top: 1px solid var(--line);
    text-align: center;
}

.reg-container {
    max-width: 800px;
    margin: 0 auto;
}

.reg-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    margin-bottom: 3rem;
}

.reg-details {
    display: flex;
    justify-content: center;
    gap: 4vw;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.rd-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.rd-icon { font-size: 24px; }
.rd-item strong { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--violet-neon); margin-bottom: 4px; }
.rd-item p { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 0; }

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.info-section {
    padding: 8vw 4vw;
    border-top: 1px solid var(--line);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
}

.info-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 4vw;
    background: var(--violet-deep);
    display: flex;
    flex-direction: column;
}

.info-title {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.contact-group { margin-bottom: 2rem; }
.cg-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--violet-neon);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.c-person { margin-bottom: 1rem; }
.c-person strong { display: block; font-size: 18px; }
.c-person span { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.c-person a { font-family: var(--font-mono); font-size: 13px; color: var(--violet-neon); text-decoration: none; }

.c-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.venue-info { margin-bottom: 2rem; }
.venue-info strong { display: block; font-family: var(--font-display); font-size: 24px; }
.venue-info span { display: block; color: var(--text-muted); }
.venue-date { font-family: var(--font-mono); color: var(--violet-neon); margin-top: 8px; }

.map-embed {
    width: 100%;
    height: 300px;
    border: 1px solid var(--line);
    margin-bottom: 2rem;
    filter: grayscale(1) invert(1) contrast(1.2);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

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

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 8vw 4vw;
    background: var(--violet-deep);
    border-top: 1px solid var(--line);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 20px;
    text-align: left;
    cursor: none;
}

.acc-title { transition: color 0.3s; }
.accordion-trigger:hover .acc-title { color: var(--violet-neon); }
.accordion-trigger[aria-expanded="true"] .acc-title { color: var(--violet-neon); }

.acc-icon { font-size: 24px; color: var(--text-muted); transition: transform 0.3s; }
.accordion-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s;
}

.accordion-trigger[aria-expanded="true"] + .accordion-content { grid-template-rows: 1fr; }

.accordion-content p {
    overflow: hidden;
    color: var(--text-muted);
    padding-bottom: 0;
    margin: 0;
}
.accordion-trigger[aria-expanded="true"] + .accordion-content p { padding-bottom: 24px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 8vw 4vw 4vw;
    text-align: center;
    border-top: 1px solid var(--line);
}

.f-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 100px);
    line-height: 1;
}

.f-subheadline {
    font-family: var(--font-mono);
    color: var(--violet-neon);
    letter-spacing: 0.2em;
    margin-top: 1rem;
}

.f-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.f-link {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.f-link:hover { color: var(--violet-neon); }

.f-bottom {
    border-top: 1px solid var(--line);
    padding-top: 2rem;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

/* GLOBAL RESPONSIVE OVERRIDES */
@media (max-width: 1024px) {
    .hero { padding: 100px 4vw 40px; justify-content: flex-start; min-height: 100vh; }
    .energy-core-container { width: 100vw; height: 100vw; max-width: 500px; max-height: 500px; top: 40%; }
    
    .cd-grid { gap: 4vw; justify-content: center; }
    .cd-item { flex: 1 1 40%; min-width: 120px; }
    .cd-sep { display: none; }
    
    .btn { padding: 14px 24px; justify-content: center; width: 100%; margin-bottom: 10px; }
    .hero-ctas { flex-direction: column; width: 100%; gap: 10px; }
    .hero-ctas .btn { width: 100%; }
}

@media (pointer: coarse) {
    body, body a, body button { cursor: auto !important; }
    .cursor-dot, .cursor-outline { display: none !important; }
    .event-panel { transform: none !important; } 
    .event-panel:active { transform: scale(0.98) !important; }
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
