/* ==========================================================================
   INTERACTUP HIGH-PERFORMANCE NIKE-INSPIRED DESIGN SYSTEM (v5 DASHBOARD)
   ========================================================================== */
/* ==========================================================================
   🎨 EDIT YOUR THEME HERE — change these values to restyle the whole site.
   Nothing else in this file needs to change. Colors accept any hex code.
   ========================================================================== */
:root {
    --bg-white: #ffffff;          /* Main page background */
    --bg-slate: #f8fafc;          /* Soft secondary background (cards, inputs) */
    --border-bold: #0f172a;       /* Dark Navy Slate border — the bold outline colour */
    --border-light: #e2e8f0;      /* Slate 200 border — subtle dividers */

    --primary: #5b21b6;           /* Main brand colour — buttons, links, highlights */
    --primary-glow: rgba(91, 33, 182, 0.12);
    --secondary: #065f46;         /* Secondary brand colour — accents, secondary buttons */
    --secondary-glow: rgba(6, 95, 70, 0.12);
    --accent: #be123c;            /* Accent colour — used sparingly for emphasis */
    --accent-glow: rgba(190, 18, 60, 0.12);

    --text-primary: #0f172a;      /* Headings & body-strong text */
    --text-secondary: #334155;    /* Regular paragraph text */
    --text-muted: #64748b;        /* Captions, labels, low-emphasis text */

    --font-heading: 'Montserrat', sans-serif;  /* Swap for any Google Font pair */
    --font-body: 'Inter', sans-serif;

    --radius-sm: 4px;             /* Crisp sharp corner premium visual */
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-premium: 0 15px 30px -10px rgba(15, 23, 42, 0.05);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    /* Sidebar Dynamic Variables */
    --sidebar-width: 70px;
}

/* Each nav item below carries its own accent colour when active — see the
   "Dynamic Page Theme Gradients" block further down to tweak individual
   section colours (Home, Speak Booth, Streak, etc.) independently. */

/* ==========================================================================
   INTRO LOADER & VECTOR ANIMATIONS
   ========================================================================== */
.intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #040407;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}

.intro-loader.slide-up {
    transform: translateY(-100%);
}

#loader-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.loader-logo-container {
    width: 320px;
    height: 320px;
    margin: 0 auto 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.loader-logo-img {
    max-width: 130px;
    height: auto;
    animation: pulseLogo 2.5s infinite ease-in-out;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(253, 224, 71, 0.1)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 0 25px rgba(253, 224, 71, 0.65)); }
}

.logo-glow-aura {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.25) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: floatAura 6s infinite ease-in-out;
}

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

.loader-status-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    animation: pulseText 1.5s infinite ease-in-out;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; color: var(--primary); }
}

/* ==========================================================================
   TRANSITION SWIPE SCREEN
   ========================================================================== */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #090910;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.transition-overlay.active {
    transform: translateY(0%);
}

.transition-logo-wrapper {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.transition-glow-aura {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
}

/* ==========================================================================
   SCROLL REVEAL TRIGGERS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-secondary);
    overflow: hidden; /* Scroll belongs to active dashboard viewport */
}

body {
    position: relative;
    height: 100vh;
    overflow: hidden;
    line-height: 1.7;
    font-size: 1.02rem;
    transition: var(--transition-smooth);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-slate);
}
::-webkit-scrollbar-thumb {
    background: var(--text-primary);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Hero Canvas Background (Subtle Node Particle Layer) */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
}

/* ==========================================================================
   DASHBOARD GRID STRUCTURE (COLLAPSIBLE SIDEBAR)
   ========================================================================== */
.dashboard-container {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    transition: grid-template-columns 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Expand Sidebar Grid Column when Sidebar is not collapsed */
.dashboard-container:has(#main-sidebar:not(.collapsed)) {
    --sidebar-width: 260px;
}

/* Left Sidebar Rail */
.dashboard-sidebar {
    background: var(--bg-white);
    border-right: 2px solid var(--border-bold);
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    z-index: 1000;
    box-shadow: 6px 0 24px rgba(15, 23, 42, 0.03);
    transition: var(--transition-smooth);
}

/* Header Inside Sidebar */
.sidebar-header {
    display: flex;
    align-items: center;
    padding: 20px 14px;
    border-bottom: 2px solid var(--border-bold);
    gap: 12px;
}

.sidebar-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.sidebar-toggle-btn:hover {
    background: var(--bg-slate);
    border-color: var(--border-bold);
}

.toggle-svg-icon {
    width: 20px;
    height: 20px;
}

.sidebar-brand-box {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

/* Hide brand info when collapsed */
.dashboard-sidebar.collapsed .sidebar-brand-box {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-15px);
    width: 0;
}

.sidebar-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.sidebar-brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

/* Sidebar Nav Elements */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 24px 10px;
    gap: 8px;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 14px;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    gap: 16px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.nav-svg-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
    fill: none;
    stroke-width: 2.2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition-smooth);
}

.nav-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide labels inside collapsed nav items */
.dashboard-sidebar.collapsed .nav-label {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
}

.nav-item:hover {
    background: var(--bg-slate);
    border-color: var(--border-bold);
    transform: translateY(-1px);
}

.nav-item.active {
    background: var(--text-primary) !important;
    color: var(--bg-white) !important;
    border-color: var(--border-bold) !important;
    box-shadow: 4px 4px 0 var(--primary-glow);
}

.nav-item.active .nav-svg-icon {
    stroke: var(--bg-white);
}

/* Sidebar Footer & soundboard toggle */
.sidebar-footer {
    padding: 20px 10px;
    border-top: 2px solid var(--border-bold);
}

.btn-sidebar-lofi {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 14px;
    background: none;
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    gap: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 3px 3px 0 var(--border-bold);
    white-space: nowrap;
}

.btn-sidebar-lofi:hover {
    background: var(--text-primary);
    color: var(--bg-white);
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 var(--border-bold);
}

.btn-sidebar-lofi:hover .nav-svg-icon {
    stroke: var(--bg-white);
}

.dashboard-sidebar.collapsed .btn-sidebar-lofi .nav-label {
    opacity: 0;
    width: 0;
}

/* Right Dashboard Viewport Container */
.dashboard-viewport {
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    position: relative;
    padding-bottom: 60px;
    transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dynamic Page Theme Gradients */
body.theme-yellow .dashboard-viewport {
    background: radial-gradient(circle at 10% 10%, rgba(234, 179, 8, 0.12) 0%, rgba(255, 255, 255, 1) 75%);
}
body.theme-cyan .dashboard-viewport {
    background: radial-gradient(circle at 10% 10%, rgba(6, 182, 212, 0.1) 0%, rgba(255, 255, 255, 1) 75%);
}
body.theme-rose .dashboard-viewport {
    background: radial-gradient(circle at 10% 10%, rgba(244, 63, 94, 0.09) 0%, rgba(255, 255, 255, 1) 75%);
}
body.theme-gold .dashboard-viewport {
    background: radial-gradient(circle at 10% 10%, rgba(234, 179, 8, 0.1) 0%, rgba(255, 255, 255, 1) 75%);
}
body.theme-emerald .dashboard-viewport {
    background: radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 1) 75%);
}
body.theme-violet .dashboard-viewport {
    background: radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.08) 0%, rgba(255, 255, 255, 1) 75%);
}
body.theme-amber .dashboard-viewport {
    background: radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.08) 0%, rgba(255, 255, 255, 1) 75%);
}
body.theme-indigo .dashboard-viewport {
    background: radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, rgba(255, 255, 255, 1) 75%);
}

/* Scoped view panels inside Viewport */
.view-panel {
    display: none;
    width: 100%;
    animation: fadeSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.view-panel.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   HIGH-LEGIBILITY VIEWPORT CARDS (Emoji-Free borders)
   ========================================================================== */
.glass {
    background: var(--bg-white);
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass:hover {
    border-color: var(--border-bold);
    box-shadow: 0 25px 50px -15px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px) !important;
}

.steady-board {
    border: 2px solid var(--border-bold) !important;
    border-radius: var(--radius-md) !important;
    background: var(--bg-white);
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-white);
    border: 2px solid var(--text-primary);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px var(--primary-glow);
}

.btn-secondary {
    background: var(--primary);
    color: var(--bg-white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-bold);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.76rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   TYPOGRAPHY & HEADINGS (Clean, grostesque Montserrat)
   ========================================================================== */
.text-gradient {
    color: var(--text-primary);
    border-bottom: 4px solid var(--primary);
}

.text-gradient-alt {
    color: var(--text-primary);
    border-bottom: 4px solid var(--secondary);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

/* ==========================================================================
   HERO SEGMENT
   ========================================================================== */
.hero-section {
    padding: 40px 0;
}

.hero-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(15, 23, 42, 0.04);
    border: 2px solid var(--border-bold);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -1.2px;
}

.hero-subtitle {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.premium-3d-frame {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    padding: 10px;
    background: var(--bg-white);
    border: 2px solid var(--border-bold);
    box-shadow: 12px 12px 0 var(--border-bold);
}

.hologram-video-simulator {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5;
    background: #070913;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-bold);
}

.hologram-image-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.holo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.holo-slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 14s infinite alternate linear, imageGlitch 6s infinite step-end;
}

@keyframes kenBurns {
    0% { transform: scale(1.01) translate(0px, 0px); }
    100% { transform: scale(1.06) translate(-2px, -1px); }
}

@keyframes imageGlitch {
    0%, 93%, 98%, 100% {
        clip-path: inset(0 0 0 0);
        filter: hue-rotate(0deg) saturate(1) contrast(1);
    }
    94% {
        clip-path: inset(15% 0 55% 0);
        filter: hue-rotate(90deg) saturate(1.8) contrast(1.1);
        transform: scale(1.07) translate(6px, -2px);
    }
    95% {
        clip-path: inset(45% 0 12% 0);
        filter: hue-rotate(-45deg) saturate(1.5);
        transform: scale(1.04) translate(-4px, 3px);
    }
    96% {
        clip-path: inset(5% 0 78% 0);
        filter: hue-rotate(180deg) saturate(2);
        transform: scale(1.09) translate(7px, 1px);
    }
    97% {
        clip-path: inset(30% 0 30% 0);
        filter: hue-rotate(270deg) saturate(1.7) contrast(1.2);
        transform: scale(1.05) translate(-2px, -3px);
    }
}

.holo-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.22) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 4px, 6px 100%;
    z-index: 4;
    pointer-events: none;
    opacity: 0.55;
}

.holo-glow-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 35%, rgba(7, 9, 19, 0.6) 88%);
    z-index: 4;
    pointer-events: none;
}

#hero-hologram-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.9;
}

.hologram-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.hologram-bubble {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--border-bold);
    box-shadow: 6px 6px 0 var(--border-bold);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    max-width: 95%;
    text-align: center;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hologram-bubble.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.hologram-question {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.hologram-sub {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

.active-members-indicator {
    position: absolute;
    bottom: -15px;
    right: 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-bold);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-premium);
    z-index: 10;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #10b981;
    animation: activePulse 2s infinite;
}

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

.indicator-text {
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

/* ==========================================================================
   🔥 COMP-CAROUSEL & GROWTH PROMISE GRID
   ========================================================================== */
.live-events-section {
    padding: 40px 0;
}

.live-events-split-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 36px;
    align-items: stretch;
}

.live-events-carousel-side {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-premium);
    text-align: center;
}

.live-events-header {
    margin-bottom: 20px;
}

.live-badge-glow {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(190, 18, 60, 0.05);
    color: var(--accent);
    border: 1.5px solid var(--border-bold);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.live-events-carousel-side h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.events-carousel-track {
    flex-grow: 1;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.live-event-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-bold);
}

.live-event-card.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
}

/* Thematic Backdrops for events */
.live-event-card.theme-speaking { background: radial-gradient(circle, rgba(234, 179, 8, 0.05) 0%, rgba(255, 255, 255, 1) 100%); }
.live-event-card.theme-wellness { background: radial-gradient(circle, rgba(244, 63, 94, 0.05) 0%, rgba(255, 255, 255, 1) 100%); }
.live-event-card.theme-casing { background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 1) 100%); }
.live-event-card.theme-creative { background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, rgba(255, 255, 255, 1) 100%); }

.event-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.event-card-icon {
    font-size: 1.3rem;
}

.event-card-badge {
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    border: 1px solid var(--border-bold);
}

.badge-speaking { background: #fef08a; color: #854d0e; }
.badge-wellness { background: #fecdd3; color: #9f1239; }
.badge-casing { background: #d1fae5; color: #065f46; }
.badge-creative { background: #ddd6fe; color: #5b21b6; }

.live-event-card h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    text-align: center;
}

.live-event-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 16px;
}

.carousel-control-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--border-bold);
    padding-top: 16px;
}

.carousel-indicators {
    display: flex;
    gap: 6px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    border: 1px solid var(--border-bold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--text-primary);
    transform: scale(1.2);
}

.live-events-promise-side {
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-bold) !important;
    box-shadow: 8px 8px 0 var(--border-bold) !important;
    background: var(--bg-white) !important;
    text-align: left;
    border-radius: var(--radius-md);
}

.promise-card-header h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

.live-events-promise-side h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.promise-card-lead {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.promise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promise-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.promise-list-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
}

.promise-list-detail span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats-section {
    padding: 40px 24px;
    border-top: 2px solid var(--border-bold);
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    border: 2px solid var(--border-bold);
    padding: 24px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 4px 4px 0 var(--border-bold);
    background: var(--bg-slate);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   🎙️ FEATURE 1: 30-SECOND MICRO-SPEAKER BOOTH
   ========================================================================== */
.speaker-booth-section {
    padding: 60px 0;
}

.speaker-booth-layout {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 40px;
    align-items: center;
}

.booth-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.booth-guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-item {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.booth-photo-inset {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-bold);
    box-shadow: 6px 6px 0 var(--border-bold);
    max-width: 380px;
    transition: var(--transition-smooth);
}

.booth-photo-inset:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--border-bold);
}

.booth-photo-inset img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.booth-photo-inset:hover img {
    transform: scale(1.06);
}

.booth-console-side {
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.console-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-bold);
    margin-bottom: 20px;
}

.pulse-dot-recording {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #64748b;
}

.pulse-dot-recording.active {
    background-color: #ef4444;
    animation: activePulse 1.2s infinite;
}

.console-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.topic-box {
    background: var(--bg-slate);
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}

.topic-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.topic-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

.visualizer-container {
    position: relative;
    width: 100%;
    height: 120px;
    background: #0f172a;
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    overflow: hidden;
}

#booth-wave-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.timer-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border-bold);
    color: #06b6d4;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    z-index: 5;
    letter-spacing: 0.5px;
}

.equalizer-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    opacity: 0.15;
    transition: var(--transition-smooth);
}

.equalizer-bars.active {
    opacity: 1;
}

.equalizer-bars span {
    display: block;
    width: 6px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
}

/* EQ heights mapping animations */
.equalizer-bars.active span:nth-child(2n) { animation: eqJump 0.6s infinite alternate ease-in-out; }
.equalizer-bars.active span:nth-child(3n) { animation: eqJump 0.4s infinite alternate ease-in-out; }
.equalizer-bars.active span:nth-child(2n+1) { animation: eqJump 0.8s infinite alternate ease-in-out; }

@keyframes eqJump {
    0% { height: 5px; }
    100% { height: 30px; }
}

.scorecard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.scorecard-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.scorecard-card {
    width: 100%;
    text-align: center;
    border: 2px solid var(--border-bold);
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: 6px 6px 0 var(--border-bold);
}

.scorecard-card h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.scorecard-card h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.score-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.score-box {
    border: 2px solid var(--border-bold);
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-slate);
}

.score-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
}

.score-label {
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
}

.scorecard-feedback {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
    background: var(--bg-slate);
    padding: 12px;
    border-radius: var(--radius-sm);
}

.scorecard-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ==========================================================================
   📸 📸 INTERACTIVE LIVE EXPERIENCE GALLERY STYLES 📸 📸
   ========================================================================== */
.gallery-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.gallery-filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.gallery-filter-btn {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 3px 3px 0 var(--border-bold);
}

.gallery-filter-btn:hover {
    background: var(--text-primary);
    color: var(--bg-white);
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 var(--border-bold);
}

.gallery-filter-btn.active {
    background: var(--primary) !important;
    color: var(--bg-white) !important;
    border-color: var(--primary) !important;
    box-shadow: 4px 4px 0 var(--border-bold) !important;
    transform: translate(-1px, -1px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-item-card {
    background: var(--bg-white);
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-md);
    box-shadow: 6px 6px 0 var(--border-bold);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    transform: translateY(0);
}

.gallery-item-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 12px 12px 0 var(--border-bold);
}

.gallery-media-box {
    width: 100%;
    aspect-ratio: 1.35;
    position: relative;
    overflow: hidden;
    background: #000;
    border-bottom: 2px solid var(--border-bold);
}

.gallery-media-box img,
.gallery-media-box .video-poster-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-card:hover .gallery-media-box img,
.gallery-item-card:hover .gallery-media-box .video-poster-placeholder {
    transform: scale(1.05);
}

.gallery-media-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 5;
    background: var(--text-primary);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-indicator-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2.5px solid var(--border-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-primary);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 4;
    transition: var(--transition-smooth);
}

.gallery-item-card:hover .video-indicator-play {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--border-bold);
    transform: translate(-50%, -50%) scale(1.15);
}

.gallery-item-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gallery-item-info h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.gallery-item-info p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   🖼️ LIGHTBOX MODAL OVERLAY 🖼️
   ========================================================================== */
.lightbox-modal-card {
    width: 92%;
    max-width: 800px;
    background: var(--bg-white) !important;
    border: 2.5px solid var(--border-bold) !important;
    box-shadow: 16px 16px 0 var(--border-bold) !important;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .lightbox-modal-card {
    transform: translateY(0);
    opacity: 1;
}

.lightbox-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 2.5px solid var(--border-bold);
    background: var(--bg-slate);
}

.lightbox-modal-header h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin: 0;
}

.btn-close-lightbox {
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    line-height: 1;
}

.btn-close-lightbox:hover {
    color: var(--accent);
    transform: scale(1.15) rotate(90deg);
}

.lightbox-media-wrapper {
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2.5px solid var(--border-bold);
    position: relative;
}

.lightbox-media-wrapper img,
.lightbox-media-wrapper video {
    max-width: 100%;
    max-height: 55vh;
    display: block;
    object-fit: contain;
    outline: none;
}

.lightbox-details {
    padding: 24px;
    background: var(--bg-white);
}

.lightbox-details p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   🎖️ STREAK SIMULATOR & LADDER
   ========================================================================== */
.streak-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.streak-rules {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.streak-rules li {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.streak-simulator {
    padding: 30px;
    border-radius: var(--radius-md);
}

.simulator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-bold);
    padding-bottom: 12px;
}

.badge-icon-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.simulator-header h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.ladder-visual {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    margin-bottom: 24px;
}

.ladder-level {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    background: var(--bg-slate);
    transition: var(--transition-smooth);
    gap: 16px;
}

.ladder-level.bronze { border-left-width: 8px; border-left-color: #cd7f32; }
.ladder-level.silver { border-left-width: 8px; border-left-color: #cbd5e1; }
.ladder-level.gold { border-left-width: 8px; border-left-color: #eab308; }

.ladder-level.active {
    border-color: var(--border-bold) !important;
    background: var(--bg-white);
    box-shadow: 4px 4px 0 var(--border-bold);
    transform: scale(1.02);
}

.level-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
}

.ladder-level.active .level-indicator {
    background: var(--primary);
    border-color: var(--border-bold);
    box-shadow: 0 0 0 3px rgba(91,33,182,0.15);
}

.level-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.level-badge {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-left: auto;
}

.simulator-controls {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.simulator-status {
    border: 2px solid var(--border-bold);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-slate);
    margin-bottom: 24px;
}

.status-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.status-level {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.streak-counter {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.simulator-log {
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.log-title {
    background: var(--text-primary);
    color: var(--bg-white);
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.log-entries {
    padding: 14px;
    max-height: 120px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-white);
}

.feed-entry {
    font-size: 0.78rem;
    line-height: 1.4;
}

.feed-entry.win { color: #065f46; }
.feed-entry.loss { color: #9f1239; }

/* ==========================================================================
   📝 VIRAL LINKEDIN POST FORMATTER
   ========================================================================== */
.linkedin-formatter-card {
    padding: 28px;
}

.formatter-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-bold);
    margin-bottom: 24px;
}

.linkedin-brand-badge {
    background: #0077b5;
    color: var(--bg-white);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
}

.formatter-header h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.formatter-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.formatter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-field label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field select,
.form-field input[type="text"],
.form-field textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-primary);
    outline: none;
    background: var(--bg-slate);
    transition: var(--transition-smooth);
}

.form-field select:focus,
.form-field input[type="text"]:focus {
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 4px 4px 0 var(--primary-glow);
}

.formatter-preview-panel {
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-md);
    background: var(--bg-slate);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.linkedin-preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.linkedin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-bold);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
}

.linkedin-meta {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.user-headline {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.linkedin-preview-body {
    background: var(--bg-white);
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 0.8rem;
    line-height: 1.5;
    font-family: var(--font-body);
    color: var(--text-muted);
    white-space: pre-line;
    max-height: 220px;
    overflow-y: auto;
    flex-grow: 1;
}

.linkedin-preview-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.copy-success-indicator {
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.copy-success-indicator.active {
    opacity: 1;
}

/* ==========================================================================
   🤝 FEATURE 2: CIRCLE MATCHMAKER & CO-ED DIRECTORY
   ========================================================================== */
.matchmaker-section {
    padding: 60px 0;
}

.matchmaker-box {
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid var(--border-bold);
    box-shadow: 12px 12px 0 var(--border-bold);
    padding: 40px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
}

.quiz-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-slate);
    border: 2.5px solid var(--border-bold);
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-step {
    display: none;
    animation: fadeSlideIn 0.5s ease forwards;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option-btn {
    text-align: left;
    width: 100%;
    background: var(--bg-white);
    border: 2px solid var(--border-bold);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 4px 4px 0 var(--border-bold);
}

.quiz-option-btn:hover {
    background: var(--bg-slate);
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 var(--border-bold);
}

.recommendations-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.rec-card {
    padding: 16px;
    border-radius: var(--radius-sm);
}

.rec-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.rec-card h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.rec-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.live-peers-directory {
    border-top: 2px solid var(--border-bold);
    padding-top: 32px;
    margin-top: 32px;
}

.peers-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.peers-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.peer-match-card {
    padding: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.peer-indicator-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.peer-match-avatar {
    font-size: 1.8rem;
}

.peer-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    background: rgba(16,185,129,0.06);
    border: 1px solid var(--border-bold);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #065f46;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
}

.peer-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
    text-transform: uppercase;
}

.peer-role {
    font-size: 0.72rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.peer-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
    flex-grow: 1;
}

.peer-tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.peer-tag {
    font-size: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
}

/* ==========================================================================
   📢 ANNOUNCEMENTS VIEW (Violet theme)
   ========================================================================== */
.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.announcement-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.announcement-tag {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.65rem;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-bold);
}

.active-tag { background: #fee2e2; color: #9f1239; }
.newsletter-tag { background: #ddd6fe; color: #5b21b6; }
.milestone-tag { background: #d1fae5; color: #065f46; }

.announcement-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.announcement-card h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.announcement-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ==========================================================================
   💡 STARTUP LAUNCHPAD & 🧠 MIND NUTRIENTS VIEWS
   ========================================================================== */
.startup-grid, .nutrients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.startup-card, .nutrient-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.startup-card h3, .nutrient-card h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-bold);
    padding-bottom: 10px;
}

.startup-card p, .nutrient-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.startup-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.startup-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.startup-list strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.nutrient-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-slate);
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 2.5px solid var(--border-bold);
}

/* ==========================================================================
   💛 SOCIAL JUSTICE & COMMUNITY SERVICE VIEW
   ========================================================================== */
.social-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.social-hero-text .hero-actions {
    margin-top: 28px;
}

.social-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-bold);
    box-shadow: 10px 10px 0 var(--border-bold);
    transition: var(--transition-smooth);
}

.social-hero-image:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0 var(--border-bold);
}

.social-hero-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-hero-image:hover img {
    transform: scale(1.05);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.social-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.social-card h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-bold);
    padding-bottom: 10px;
}

.social-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-card-image {
    width: 100%;
    height: 190px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--border-bold);
}

.social-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-card:hover .social-card-image img {
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .social-hero-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
}

/* ==========================================================================
   CENTRAL APPLICATION PORTAL & FORM CARDS
   ========================================================================== */
.portal-section {
    padding: 60px 24px;
    border-top: 2px solid var(--border-bold);
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.portal-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.portal-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-bold);
    padding-bottom: 10px;
}

.portal-card-icon {
    font-size: 1.5rem;
}

.portal-card h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin: 0;
}

.portal-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ==========================================================================
   NIKE-STYLE HIGH-CONTRAST FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-white);
    border-top: 2px solid var(--border-bold);
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 2.5px solid var(--border-light);
}

.footer-brand .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hidden-admin-key {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

/* ==========================================================================
   MODAL DIALOGS OVERLAYS
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.active {
    display: flex;
}

.modal-card {
    background: var(--bg-white);
    border: 2px solid var(--border-bold);
    box-shadow: 12px 12px 0 var(--border-bold);
    border-radius: var(--radius-md);
    padding: 32px;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 12px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.btn-close-modal {
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    line-height: 1;
}

.modal-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Modal table scroll */
.all-events-modal-card {
    max-width: 800px;
}

.table-scroll-container {
    max-height: 380px;
    overflow-y: auto;
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
}

.events-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.82rem;
}

.events-table th {
    background: var(--text-primary);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
}

.events-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
}

.events-table tr:hover td {
    background: var(--bg-slate);
}

.table-event-name {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
}

.table-event-desc {
    line-height: 1.4;
    color: var(--text-secondary);
}

/* ==========================================================================
   🔐 ADMIN SYSTEM PASSCODE & LIVE BOARD
   ========================================================================== */
.passcode-form-group {
    display: flex;
    gap: 12px;
}

.passcode-form-group input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-bold);
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 0.9rem;
    background: var(--bg-slate);
}

.passcode-error-msg {
    display: none;
    color: #ef4444;
    font-size: 0.76rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-top: 10px;
    text-transform: uppercase;
}

.admin-dashboard-card {
    max-width: 900px;
    width: 95%;
}

.admin-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
}

.admin-form-pane h4,
.admin-list-pane h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-bold);
    padding-bottom: 6px;
}

.admin-list-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.admin-events-list {
    max-height: 380px;
    overflow-y: auto;
    border: 2.5px solid var(--border-bold);
    border-radius: var(--radius-sm);
    background: var(--bg-slate);
}

.admin-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1.5px solid var(--border-light);
    background: var(--bg-white);
}

.admin-item-details {
    display: flex;
    flex-direction: column;
}

.admin-item-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.admin-item-badge {
    font-size: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-muted);
}

.btn-delete-event {
    background: #fee2e2;
    color: #9f1239;
    border: 1.5px solid var(--border-bold);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-delete-event:hover {
    background: #ef4444;
    color: var(--bg-white);
}

/* ==========================================================================
   🎧 FLOATING WELLNESS AUDIO PLAYER
   ========================================================================== */
.wellness-audio-player {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10000;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--border-bold);
    box-shadow: 6px 6px 0 var(--border-bold);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 320px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
}

.wellness-audio-player.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.wellness-player-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.wellness-track-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.wellness-controls {
    display: flex;
    gap: 8px;
}

.wellness-control-btn {
    flex-grow: 1;
    background: var(--bg-slate);
    border: 1.5px solid var(--border-bold);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    padding: 6px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.wellness-control-btn:hover {
    background: var(--bg-white);
}

.wellness-control-btn.active {
    background: var(--primary) !important;
    color: var(--bg-white) !important;
    border-color: var(--border-bold) !important;
}

.wellness-volume-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.vol-icon {
    font-size: 0.85rem;
}

#wellness-volume-slider {
    flex-grow: 1;
    cursor: pointer;
    accent-color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none; /* In top notch tablet modes sidebar drawer is usually an absolute slider */
    }
    
    .hero-grid-split,
    .live-events-split-grid,
    .speaker-booth-layout,
    .formatter-grid,
    .peers-grid,
    .startup-grid,
    .nutrients-grid,
    .admin-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .dashboard-viewport {
        padding-left: 16px;
        padding-right: 16px;
    }
}
