/* ==========================================================================
   MONACO ROBOT SHOW 2026 - Luminous Light Purple, Pink & Peach Aesthetic
   ========================================================================== */

:root {
    --bg-void: #09050e;
    --bg-surface: #12091c;
    --bg-card: rgba(26, 15, 42, 0.6);
    --bg-card-hover: rgba(38, 22, 60, 0.85);
    
    --border-glass: rgba(232, 190, 255, 0.12);
    --border-glass-hover: rgba(244, 114, 182, 0.45);
    --border-glow: rgba(192, 132, 252, 0.4);

    --text-pure: #ffffff;
    --text-dim: #d8c7ea;
    --text-muted: #9581ab;

    /* Light Purple, Pink, Peach Palette */
    --light-purple: #c084fc;
    --lavender-glow: #e9d5ff;
    --neon-pink: #f472b6;
    --vibrant-rose: #fb7185;
    --peach-glow: #fda4af;
    --warm-peach: #fb923c;
    --sunset-coral: #ff7e67;
    --soft-cream: #fff1f2;

    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-hud: 'Space Grotesk', monospace;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html, body {
    background-color: var(--bg-void);
    color: var(--text-pure);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Preloader Overlay & Production Loading Lock
   ========================================================================== */

body.loading {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
}

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #09050e;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-overlay.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 440px;
    width: 90%;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.preloader-crest {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.preloader-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--neon-pink), var(--light-purple), var(--warm-peach));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 25px rgba(244, 114, 182, 0.6);
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(244, 114, 182, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(244, 114, 182, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(244, 114, 182, 0.4); }
}

.preloader-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.preloader-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 3px;
    line-height: 1;
}

.preloader-sub {
    font-family: var(--font-hud);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--peach-glow);
}

.preloader-status-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.preloader-pulse-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.preloader-beacon {
    width: 7px;
    height: 7px;
    background: var(--neon-pink);
    border-radius: 50%;
    animation: beaconFlash 1.2s infinite;
}

@keyframes beaconFlash {
    0% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

.preloader-status-text {
    font-family: var(--font-hud);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.preloader-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--light-purple), var(--neon-pink), var(--warm-peach));
    border-radius: 4px;
    box-shadow: 0 0 15px var(--neon-pink);
    transition: width 0.2s ease-out;
}

.preloader-metrics {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-hud);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ==========================================================================
   Ambient Background Glow Orbs (Purple, Pink, Peach)
   ========================================================================== */

.ambient-glow {
    position: fixed;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.28;
    animation: floatGlow 18s infinite alternate ease-in-out;
}

.glow-1 {
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, var(--light-purple), transparent 70%);
}

.glow-2 {
    top: 35%;
    right: -150px;
    background: radial-gradient(circle, var(--neon-pink), transparent 70%);
    animation-delay: -6s;
}

.glow-3 {
    bottom: -120px;
    left: 25%;
    background: radial-gradient(circle, var(--warm-peach), transparent 70%);
    animation-delay: -12s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(70px, 90px) scale(1.18); }
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Floating Cyber-Glass Island Navbar
   ========================================================================== */

.navbar-wrapper {
    position: fixed;
    top: 1.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 1.5rem;
    pointer-events: none;
}

.island-nav {
    pointer-events: auto;
    background: rgba(18, 9, 28, 0.72);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: 100px;
    padding: 0.65rem 1.25rem 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(192, 132, 252, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s var(--ease-out);
}

.island-nav:hover {
    border-color: rgba(244, 114, 182, 0.5);
    box-shadow: 0 20px 60px rgba(244, 114, 182, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.brand-crest {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-pure);
}

.crest-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--neon-pink), var(--light-purple), var(--warm-peach));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    box-shadow: 0 0 18px rgba(244, 114, 182, 0.5);
}

.pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--warm-peach);
    border-radius: 50%;
    border: 2px solid var(--bg-void);
    animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(251, 146, 60, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); }
}

.crest-brand {
    display: flex;
    flex-direction: column;
}

.crest-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 2px;
    line-height: 1;
}

.crest-tag {
    font-family: var(--font-hud);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--peach-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-item {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: var(--peach-glow);
}

.nav-cta-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-badge {
    font-family: var(--font-hud);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--peach-glow);
    background: rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(251, 146, 60, 0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-live-dot {
    width: 6px;
    height: 6px;
    background: var(--warm-peach);
    border-radius: 50%;
}

.btn-glow-pill {
    background: linear-gradient(135deg, #ffffff, #ffe4e6);
    color: #1a0826;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s var(--ease-spring);
    box-shadow: 0 4px 18px rgba(244, 114, 182, 0.35);
    border: none;
    display: inline-block;
}

.btn-glow-pill:hover {
    transform: scale(1.05);
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(244, 114, 182, 0.6);
}

/* ==========================================================================
   Hero Stage & Full Screen Video
   ========================================================================== */

#hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

#robot-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(9, 5, 14, 0.75) 100%),
                linear-gradient(to bottom, rgba(9, 5, 14, 0.4) 0%, transparent 20%, transparent 80%, var(--bg-void) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Telemetry HUD (Bottom of screen) */
.telemetry-hud {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    padding: 0 3rem;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    box-sizing: border-box;
}

.hud-left, .hud-right {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hud-right {
    align-items: flex-end;
}

.hud-label {
    font-family: var(--font-hud);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-pink);
    opacity: 0.9;
}

.hud-value {
    font-family: var(--font-hud);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(244, 114, 182, 0.6);
}

.hud-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hud-scroll-action {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.hud-mouse-icon {
    width: 18px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    position: relative;
    background: rgba(18, 9, 28, 0.5);
    backdrop-filter: blur(6px);
}

.hud-wheel {
    width: 3px;
    height: 6px;
    background: var(--neon-pink);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.6s infinite ease-in-out;
}

@keyframes mouseScroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    50% { opacity: 0.2; transform: translate(-50%, 8px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}

.hud-action-text {
    font-family: var(--font-hud);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.laser-track {
    width: 240px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.laser-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--light-purple), var(--neon-pink), var(--warm-peach));
    border-radius: 3px;
    box-shadow: 0 0 12px var(--neon-pink);
    transition: width 0.1s linear;
}

/* ==========================================================================
   Main Experience Flow & Typography
   ========================================================================== */

.main-experience {
    position: relative;
    z-index: 10;
    background-color: var(--bg-void);
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.95);
}

.bento-section, .speakers-section, .partners-section {
    padding: 8rem 0;
    position: relative;
}

.bento-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.badge-hud {
    display: inline-block;
    font-family: var(--font-hud);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--peach-glow);
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.3);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.15);
}

.display-heading {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.shimmer-text {
    background: linear-gradient(135deg, #ffffff 15%, var(--neon-pink) 45%, var(--light-purple) 75%, var(--warm-peach) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.1em;
}

.section-lead {
    color: var(--text-dim);
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ==========================================================================
   Bento Grid Component (Purple, Pink & Peach with Rich Live Demo)
   ========================================================================== */

.bento-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.75rem;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all 0.4s var(--ease-out);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(244, 114, 182, 0.12), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(244, 114, 182, 0.2);
}

.bento-hero {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at 10% 10%, rgba(244, 114, 182, 0.16), transparent 50%), var(--bg-card);
}

.demo-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.live-broadcast-pill {
    font-family: var(--font-hud);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--neon-pink);
    background: rgba(244, 114, 182, 0.12);
    border: 1px solid rgba(244, 114, 182, 0.35);
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.live-dot-pulse {
    width: 6px;
    height: 6px;
    background: var(--neon-pink);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

.bento-tag {
    font-family: var(--font-hud);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--peach-glow);
    display: block;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding-bottom: 0.1rem;
}

.bento-text {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 300;
}

/* Featured Platforms Chips */
.platforms-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.platform-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(244, 114, 182, 0.18);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.platform-chip:hover {
    background: rgba(244, 114, 182, 0.08);
    border-color: var(--neon-pink);
    transform: translateY(-2px);
}

.chip-status {
    font-family: var(--font-hud);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--light-purple);
    letter-spacing: 1px;
}

.chip-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
}

.chip-metric {
    font-family: var(--font-hud);
    font-size: 0.75rem;
    color: var(--peach-glow);
}

/* Arena Schedule Box */
.arena-schedule-box {
    background: rgba(18, 9, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sch-time {
    font-family: var(--font-hud);
    font-weight: 700;
    color: var(--warm-peach);
    font-size: 0.8rem;
    white-space: nowrap;
}

.sch-event {
    color: var(--text-dim);
    flex: 1;
    font-weight: 400;
}

.sch-badge {
    font-family: var(--font-hud);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--lavender-glow);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.bento-stat-row {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(244, 114, 182, 0.2);
    padding: 0.7rem 1.15rem;
    border-radius: 14px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.stat-num {
    font-family: var(--font-hud);
    font-weight: 700;
    color: var(--peach-glow);
    font-size: 1.15rem;
    margin-right: 0.35rem;
}

.mini-hud-badge {
    font-family: var(--font-hud);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--light-purple);
    margin-top: 1.5rem;
}

/* ==========================================================================
   Keynote Speakers Section (8 Keynote Cards)
   ========================================================================== */

.speakers-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.speaker-profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.speaker-profile-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 114, 182, 0.5);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(192, 132, 252, 0.25);
}

.speaker-visual {
    height: 160px;
    border-radius: 16px;
    margin-bottom: 1.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-1 { background: radial-gradient(circle at top right, #c084fc, #27103a); }
.sp-2 { background: radial-gradient(circle at top right, #f472b6, #3b0d25); }
.sp-3 { background: radial-gradient(circle at top right, #fb923c, #3d140a); }
.sp-4 { background: radial-gradient(circle at top right, #fda4af, #300c1e); }
.sp-5 { background: radial-gradient(circle at top right, #e879f9, #381242); }
.sp-6 { background: radial-gradient(circle at top right, #818cf8, #18113b); }
.sp-7 { background: radial-gradient(circle at top right, #f97316, #43160a); }
.sp-8 { background: radial-gradient(circle at top right, #fb7185, #3c0c1b); }

.speaker-hologram {
    z-index: 2;
}

.hologram-tag {
    font-family: var(--font-hud);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: rgba(18, 9, 28, 0.85);
    border: 1px solid rgba(244, 114, 182, 0.4);
    color: var(--peach-glow);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    backdrop-filter: blur(6px);
}

.speaker-affiliation {
    font-family: var(--font-hud);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--neon-pink);
    display: block;
    margin-bottom: 0.5rem;
}

.speaker-fullname {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.speaker-topic {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.speaker-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(244, 114, 182, 0.15);
}

.session-time {
    font-family: var(--font-hud);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   Sponsors & Partners Section
   ========================================================================== */

.diamond-showcase {
    margin-bottom: 4rem;
}

.tier-label {
    font-family: var(--font-hud);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.diamond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.diamond-card {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.06) 0%, rgba(192, 132, 252, 0.02) 100%);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}

.diamond-card:hover {
    border-color: var(--neon-pink);
    background: rgba(244, 114, 182, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(244, 114, 182, 0.35);
}

.partner-logo-box {
    text-align: center;
}

.partner-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    color: #fff;
    margin-bottom: 0.35rem;
}

.partner-sub {
    font-family: var(--font-hud);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--peach-glow);
}

.tech-alliances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.tech-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(244, 114, 182, 0.1);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    font-family: var(--font-hud);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.tech-box:hover {
    color: #fff;
    border-color: var(--neon-pink);
    background: rgba(244, 114, 182, 0.08);
}

/* Ultra Luxury VIP Grand Card (Peach & Pink Glow) */
.vip-grand-card {
    background: linear-gradient(135deg, #1b0c2a 0%, #12061e 100%);
    border: 1px solid rgba(244, 114, 182, 0.35);
    border-radius: 32px;
    padding: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(244, 114, 182, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.vip-glow-effect {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.25), rgba(251, 146, 60, 0.15), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.vip-badge-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vip-exclusive-badge {
    font-family: var(--font-hud);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--peach-glow);
    background: rgba(251, 146, 60, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.35);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.vip-date {
    font-family: var(--font-hud);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.vip-headline {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    padding-bottom: 0.15rem;
}

.vip-subtext {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 620px;
}

.vip-action-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.btn-vip-primary {
    background: linear-gradient(135deg, #ffffff, var(--peach-glow), var(--light-purple));
    color: #1a0826;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1.25rem 2.8rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-spring);
    box-shadow: 0 10px 30px rgba(244, 114, 182, 0.4);
    display: inline-block;
    text-align: center;
}

.btn-vip-primary:hover {
    transform: scale(1.06);
    box-shadow: 0 15px 45px rgba(251, 146, 60, 0.55);
    background: #ffffff;
}

.vip-guarantee {
    font-family: var(--font-hud);
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Cyber Footer
   ========================================================================== */

.cyber-footer {
    background: #06030a;
    border-top: 1px solid var(--border-glass);
    padding: 6rem 0 3rem 0;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.8fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-mission {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1.5rem 0;
    max-width: 320px;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-hud);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--peach-glow);
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.25);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
}

.sys-dot {
    width: 6px;
    height: 6px;
    background: var(--warm-peach);
    border-radius: 50%;
}

.footer-nav-col h4 {
    font-family: var(--font-hud);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-nav-col a, .footer-nav-col p {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
    transition: color 0.3s ease;
}

.footer-nav-col a:hover {
    color: var(--peach-glow);
}

.highlight-loc {
    color: var(--neon-pink) !important;
    font-family: var(--font-hud);
    font-size: 0.85rem !important;
}

.newsletter-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 0.75rem 1.25rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    flex: 1;
    transition: border-color 0.3s ease;
}

.newsletter-input-group input:focus {
    border-color: var(--neon-pink);
}

.btn-dispatch {
    background: linear-gradient(135deg, var(--neon-pink), var(--warm-peach));
    color: #1a0826;
    font-family: var(--font-hud);
    font-weight: 700;
    border: none;
    border-radius: 100px;
    padding: 0.75rem 1.4rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
}

.btn-dispatch:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-dim);
}

/* ==========================================================================
   Responsive Adaptations & Mobile Optimization
   ========================================================================== */

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-hero {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .vip-grand-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2.5rem;
        gap: 2.5rem;
    }
    .vip-action-wrap {
        align-items: flex-start;
        width: 100%;
    }
    .btn-vip-primary {
        width: 100%;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile Adaptation */
    .navbar-wrapper {
        top: 0.85rem;
        padding: 0 0.85rem;
    }
    .island-nav {
        width: 100%;
        justify-content: space-between;
        padding: 0.5rem 0.85rem;
        gap: 0.75rem;
    }
    .nav-menu, .status-badge {
        display: none;
    }
    .crest-icon {
        width: 28px;
        height: 28px;
    }
    .crest-icon svg {
        width: 15px;
        height: 15px;
    }
    .crest-name {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
    .crest-tag {
        font-size: 0.52rem;
        letter-spacing: 2px;
    }
    .btn-glow-pill {
        padding: 0.45rem 0.95rem;
        font-size: 0.76rem;
    }

    /* Hero Telemetry HUD Mobile */
    .telemetry-hud {
        bottom: 1.25rem;
        padding: 0 1rem;
        justify-content: center;
    }
    .hud-left, .hud-right {
        display: none;
    }
    .laser-track {
        width: 180px;
    }
    .hud-action-text {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    .hud-mouse-icon {
        width: 16px;
        height: 26px;
    }

    /* Spacing & Section Structure */
    .container {
        padding: 0 1.15rem;
    }
    .bento-section, .speakers-section, .partners-section {
        padding: 4.5rem 0;
    }
    .bento-header {
        margin-bottom: 3rem;
    }
    .display-heading {
        font-size: 2.2rem;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }
    .section-lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Bento Grid Mobile */
    .bento-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
    .bento-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }
    .bento-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    .platforms-preview {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }
    .arena-schedule-box {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    .bento-stat-row {
        gap: 0.5rem;
    }
    .stat-pill {
        padding: 0.5rem 0.85rem;
        font-size: 0.78rem;
        border-radius: 10px;
    }
    .stat-num {
        font-size: 1rem;
    }

    /* Speakers Section Mobile */
    .speakers-collection {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .speaker-profile-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .speaker-visual {
        height: 140px;
        margin-bottom: 1.25rem;
    }
    .speaker-fullname {
        font-size: 1.4rem;
    }
    .speaker-topic {
        font-size: 0.85rem;
    }

    /* Sponsors & Partners Mobile */
    .diamond-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .diamond-card {
        padding: 2.25rem 1.25rem;
        border-radius: 16px;
    }
    .partner-title {
        font-size: 1.35rem;
    }
    .tech-alliances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
        margin-bottom: 4rem;
    }
    .tech-box {
        padding: 1.15rem 0.75rem;
        font-size: 0.72rem;
    }

    /* VIP Card Mobile */
    .vip-grand-card {
        padding: 2.25rem 1.25rem;
        border-radius: 22px;
        gap: 2rem;
    }
    .vip-headline {
        font-size: 1.85rem;
        line-height: 1.25;
    }
    .vip-subtext {
        font-size: 0.95rem;
    }
    .btn-vip-primary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .cyber-footer {
        padding: 4rem 0 2rem 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .display-heading {
        font-size: 1.85rem;
    }
    .bento-title {
        font-size: 1.45rem;
    }
    .tech-alliances-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-input-group {
        flex-direction: column;
    }
    .newsletter-input-group input, .btn-dispatch {
        width: 100%;
    }
    .vip-headline {
        font-size: 1.6rem;
    }
}
