@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Orbitron:wght@400;600;800;900&display=swap');

/* ==========================================
   TRON / CYBER-DJENT DESIGN SYSTEM
   ========================================== */
:root {
    --bg-primary: #040508;
    --bg-secondary: #0a0c12;
    --bg-card: rgba(12, 16, 26, 0.7);
    --bg-card-hover: rgba(22, 29, 46, 0.9);
    
    --accent-cyan: #00f2fe;
    --accent-cyan-rgb: 0, 242, 254;
    --accent-magenta: #f35588;
    --accent-magenta-rgb: 243, 85, 136;
    
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --text-dark: #475569;
    
    --border-glow: 1px solid rgba(0, 242, 254, 0.15);
    --border-glow-magenta: 1px solid rgba(243, 85, 136, 0.2);
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   BASE & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 254, 0.25);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    font-weight: 800;
    text-transform: uppercase;
}

p {
    font-size: 0.95rem;
    font-weight: 300;
}

/* ==========================================
   GLOW & UTILITIES
   ========================================== */
.glow-text-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.6), 0 0 20px rgba(0, 242, 254, 0.2);
}

.glow-text-magenta {
    color: var(--accent-magenta);
    text-shadow: 0 0 8px rgba(243, 85, 136, 0.6), 0 0 20px rgba(243, 85, 136, 0.2);
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glow);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.glass-panel:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 8px 32px rgba(0, 242, 254, 0.08);
}

/* ==========================================
   CYBERNETIC ACTION BUTTONS
   ========================================== */
.btn-cyber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.btn-cyan {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
}

.btn-cyan:hover {
    background: transparent;
    color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 242, 254, 0.4);
}

.btn-outline:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
    border-color: var(--accent-cyan);
}

.btn-magenta {
    background: var(--accent-magenta);
    color: var(--bg-primary);
    border: 1px solid var(--accent-magenta);
    box-shadow: 0 0 15px rgba(243, 85, 136, 0.35);
}

.btn-magenta:hover {
    background: transparent;
    color: var(--accent-magenta);
    box-shadow: 0 0 25px rgba(243, 85, 136, 0.6);
}

/* ==========================================
   HERO SOCIAL SHORTCUTS & TRANS-FEED
   ========================================== */
.hero-social-shortcuts {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-shortcut-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: all var(--transition-fast);
}

.social-shortcut-item:hover {
    color: #ffffff;
}

.social-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 16, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.social-svg {
    width: 14px;
    height: 14px;
    color: var(--text-dim);
    transition: color var(--transition-fast);
}

.insta-glow:hover {
    border-color: #c13584;
    box-shadow: 0 0 12px rgba(193, 53, 132, 0.5);
    background: rgba(193, 53, 132, 0.15);
}
.insta-glow:hover .social-svg {
    color: #ff00ea;
}

.youtube-glow:hover {
    border-color: #ff0000;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    background: rgba(255, 0, 0, 0.15);
}
.youtube-glow:hover .social-svg {
    color: #ff3333;
}

.tiktok-glow:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.5);
    background: rgba(0, 242, 254, 0.15);
}
.tiktok-glow:hover .social-svg {
    color: var(--accent-cyan);
}

/* ==========================================
   GLOWING SUCCESS MODALS
   ========================================== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 8, 0.96);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.success-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.success-modal-content {
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: var(--border-glow);
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.success-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px var(--accent-cyan);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px var(--accent-cyan)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 15px var(--accent-cyan)); }
}

.section-padding {
    padding: 80px 5%;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 4%;
    }
}

#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.12;
}

/* ==========================================
   NAVIGATION
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: all var(--transition-fast);
}

header.scrolled {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 242, 254, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-dim);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    transition: width var(--transition-fast);
}

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 32px;
        transition: left var(--transition-smooth);
        border-top: 1px solid rgba(0, 242, 254, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
}

/* ==========================================
   HERO TWO-COLUMN & ORBITING PARTICLES
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-glow-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    z-index: 10;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media (max-width: 992px) {
    .hero-content {
        align-items: center;
    }
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent-cyan);
}

.hero-title {
    font-size: 4.8rem;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-dim);
    max-width: 580px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-cyber {
        text-align: center;
        width: 100%;
    }
}

.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-orbit-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .profile-orbit-wrap {
        width: 240px;
        height: 240px;
    }
}

.profile-hud-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 254, 0.25);
    animation: rotate 60s linear infinite;
}

.ring-1 { width: 100%; height: 100%; }
.ring-2 { 
    width: 88%; 
    height: 88%; 
    border: 1px dotted rgba(243, 85, 136, 0.2); 
    animation: rotate-reverse 30s linear infinite;
}

.profile-mask-frame {
    width: 74%;
    height: 74%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
    position: relative;
    background: var(--bg-secondary);
    z-index: 5;
}

.profile-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* ==========================================
   INFINITE SCROLLING MARQUEE BAND (RHYTHM TAPE)
   ========================================== */
.marquee-ribbon {
    width: 100vw;
    overflow: hidden;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 242, 254, 0.12);
    border-bottom: 1px solid rgba(0, 242, 254, 0.12);
    padding: 16px 0;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 50s linear infinite;
    padding-left: 50px;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-right: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-quote {
    color: var(--accent-cyan);
    font-style: italic;
    margin-right: 10px;
}

.marquee-divider {
    color: var(--accent-magenta);
    margin-right: 50px;
    font-size: 1.1rem;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================
   THE LEGEND (BIO & CINEMATIC LOOP VIDEO)
   ========================================== */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
    }
}

.bio-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.section-title-wrap {
    margin-bottom: 8px;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--accent-magenta);
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.bio-text {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.bio-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 12px;
}

.stat-item {
    border-left: 2px solid var(--accent-cyan);
    padding-left: 12px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.bio-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cinematic-video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border: var(--border-glow-magenta);
    box-shadow: 0 8px 32px rgba(243, 85, 136, 0.05);
}

.cinematic-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
    pointer-events: none;
}

.cinematic-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(4, 5, 8, 0.95) 30%, rgba(4, 5, 8, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.cinematic-card-content {
    position: relative;
    z-index: 5;
}

.primus-card {
    border: 1px solid rgba(243, 85, 136, 0.2);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.primus-card::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--accent-magenta);
    box-shadow: 0 0 8px var(--accent-magenta);
}

.primus-badge {
    position: absolute;
    top: 12px;
    right: -25px;
    background: var(--accent-magenta);
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 25px;
    transform: rotate(45deg);
}

.primus-title {
    font-size: 1rem;
    color: var(--accent-magenta);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primus-quote {
    font-style: italic;
    color: var(--text-dim);
    font-size: 0.85rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 12px;
    margin: 10px 0;
}

/* ==========================================
   ACADEMY & MASTERCLASSES SECTION
   ========================================== */
.academy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .academy-grid {
        grid-template-columns: 1fr;
    }
}

.mentorship-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: var(--border-glow);
}

.mentorship-list {
    margin: 20px 0 32px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mentorship-list li {
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mentorship-list li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 5px var(--accent-cyan);
}

/* Digital Masterclass product cards */
.masterclass-list-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-card {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: var(--border-glow-magenta);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-magenta);
    box-shadow: 0 0 8px var(--accent-magenta);
}

@media (max-width: 576px) {
    .course-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.course-info {
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.course-badge {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    background: rgba(243, 85, 136, 0.08);
    color: var(--accent-magenta);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.course-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.course-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    max-width: 380px;
}

.course-purchase-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 140px;
}

@media (max-width: 576px) {
    .course-purchase-side {
        width: 100%;
        align-items: flex-start;
    }
}

.course-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   REMOTE RECORDING & STUDIO BOOKING
   ========================================== */
.studio-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .studio-grid {
        grid-template-columns: 1fr;
    }
}

.studio-info-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Studio Step-by-Step workflow card */
.workflow-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.workflow-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
    flex-shrink: 0;
}

.step-title {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Custom gear specification grids */
.gear-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gear-item {
    border-left: 2px solid var(--accent-magenta);
    padding-left: 12px;
}

.gear-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--accent-magenta);
    text-transform: uppercase;
}

.gear-val {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Glowing Cybernetic Booking Terminal Form */
.terminal-card {
    padding: 36px;
    border: var(--border-glow);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .terminal-card {
        padding: 20px;
    }
}

.terminal-header {
    border-bottom: 1px solid rgba(0, 242, 254, 0.15);
    padding-bottom: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-title {
    font-size: 1rem;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

.terminal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.terminal-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(4, 5, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: all var(--transition-fast);
}

.terminal-input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.25);
    background: rgba(12, 16, 26, 0.85);
}

select.terminal-input {
    cursor: pointer;
    background-color: var(--bg-secondary);
}

select.terminal-input option {
    background-color: var(--bg-secondary);
    color: var(--text-main);
}

textarea.terminal-input {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================
   INSTAGRAM MEDIA WALL (REAL MEDIA & STYLING)
   ========================================== */
.instagram-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

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

@media (max-width: 992px) {
    .instagram-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .instagram-masonry {
        grid-template-columns: 1fr;
    }
}

.insta-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    border: var(--border-glow);
    cursor: pointer;
    background: var(--bg-secondary);
}

.insta-img-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--transition-smooth);
}

.insta-card:hover .insta-img-container {
    transform: scale(1.06);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(4, 5, 8, 0.9) 85%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: background var(--transition-fast);
}

.insta-card:hover .insta-overlay {
    background: linear-gradient(rgba(0, 242, 254, 0.1), rgba(4, 5, 8, 0.95) 85%);
}

.insta-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 44px;
    height: 44px;
    background: rgba(4,5,8,0.9);
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-fast);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.insta-icon-overlay svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-cyan);
    fill: none;
    stroke-width: 1.5;
}

.insta-card:hover .insta-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.0);
}

.insta-tag {
    font-family: var(--font-display);
    font-size: 0.6rem;
    color: var(--accent-cyan);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insta-caption {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 400;
}

/* ==========================================
   COMPACT SESSIONS ARCHIVES (EXPAND ON HOVER)
   ========================================== */
.disco-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.disco-search {
    flex-grow: 1;
    max-width: 320px;
    position: relative;
}

.disco-search input {
    width: 100%;
    background: var(--bg-card);
    border: var(--border-glow);
    padding: 10px 16px;
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: all var(--transition-fast);
}

.disco-search input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.25);
}

.disco-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
    border-color: var(--accent-cyan);
}

.disco-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.disco-card {
    padding: 14px 24px;
    overflow: hidden;
    max-height: 52px;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s, background-color 0.2s;
    display: flex;
    flex-direction: column;
}

.disco-card:hover {
    max-height: 160px;
}

.disco-header-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.disco-header-title-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.disco-header-year {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 700;
    min-width: 45px;
}

.disco-header-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.disco-header-artist {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.disco-expanded-details {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease 0.05s;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disco-card:hover .disco-expanded-details {
    opacity: 1;
    visibility: visible;
}

.disco-detail-item {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.disco-detail-item span {
    font-family: var(--font-display);
    color: var(--accent-magenta);
    text-transform: uppercase;
}

/* ==========================================
   STREAMLINED DRUM PANTHEON (HALL OF ICONS)
   ========================================== */
.pantheon-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pantheon-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

@media (max-width: 1200px) {
    .pantheon-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .pantheon-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pantheon-badge-card {
    padding: 12px;
    border-radius: 8px;
    border: var(--border-glow);
    background: var(--bg-card);
    transition: all var(--transition-fast);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.pantheon-badge-card:hover {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 15px rgba(243, 85, 136, 0.15);
    transform: translateY(-2px);
}

.badge-portrait-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-cyan);
    margin-bottom: 10px;
    transition: border-color var(--transition-fast);
}

.pantheon-badge-card:hover .badge-portrait-container {
    border-color: var(--accent-magenta);
}

.badge-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.badge-name {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-align: center;
}

.badge-desc {
    font-size: 0.55rem;
    color: var(--text-dark);
    margin-top: 2px;
    text-align: center;
}

/* ==========================================
   SPONSORS & FOOTER
   ========================================== */
.sponsors-wrap {
    background: rgba(10, 12, 18, 0.4);
    border-top: 1px solid rgba(255,255,255,0.01);
    border-bottom: 1px solid rgba(255,255,255,0.01);
    padding: 24px 0;
}

.sponsors-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.sponsor-logo {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition-fast);
}

.sponsor-logo:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.3);
}

.sponsor-logo span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--accent-magenta);
    display: block;
    text-align: center;
}

footer {
    background: #020305;
    padding: 40px 5% 30px 5%;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-left h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.footer-left p {
    color: var(--text-dim);
    font-size: 0.85rem;
    max-width: 320px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

@media (max-width: 768px) {
    .footer-right {
        align-items: center;
    }
}

.footer-email {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-email:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--accent-cyan);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--text-dim);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--accent-magenta);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.footer-bottom a {
    color: var(--text-dim);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-cyan);
}

/* Lightbox styles for instagram images */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4,5,8,0.96);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: var(--border-glow);
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.15);
}

.lightbox-img-placeholder {
    width: 440px;
    height: 320px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 576px) {
    .lightbox-img-placeholder {
        width: 280px;
        height: 200px;
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-magenta);
}

.lightbox-caption {
    font-size: 0.9rem;
    text-align: center;
    max-width: 400px;
    color: #ffffff;
}

.btn-lightbox-insta {
    margin-top: 20px;
    background: #c13584;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(193, 53, 132, 0.4);
    transition: all var(--transition-fast);
}

.btn-lightbox-insta:hover {
    box-shadow: 0 0 20px rgba(193, 53, 132, 0.7);
    transform: translateY(-2px);
}

/* ==========================================
   CYBERNETIC CLEAN LAYOUT MODE (LIGHT THEME)
   ========================================== */
body.clean-theme {
    background-color: #ffffff !important;
    color: #1e293b !important;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

/* 1. Integrated Premium Images and Canvas Particles */
body.clean-theme #instagram,
body.clean-theme .hero-visual-col,
body.clean-theme .bio-right,
body.clean-theme .badge-portrait-container {
    display: block !important;
}

body.clean-theme .badge-portrait-container {
    display: flex !important;
}

/* 2. Synthesized Layouts (Restored Dual-Column) */
body.clean-theme .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left !important;
}

@media (max-width: 992px) {
    body.clean-theme .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    body.clean-theme .hero-content {
        align-items: center !important;
    }
}

body.clean-theme .hero-content {
    align-items: flex-start !important;
}

body.clean-theme .hero-title {
    background: linear-gradient(135deg, #0f172a 40%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.clean-theme .hero-subtitle,
body.clean-theme .bio-text {
    color: #475569 !important;
    font-size: 1rem;
    font-weight: 400;
}

body.clean-theme .bio-grid {
    grid-template-columns: 1fr 1fr !important;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    body.clean-theme .bio-grid {
        grid-template-columns: 1fr !important;
    }
}

body.clean-theme .pantheon-strip {
    grid-template-columns: repeat(6, 1fr) !important;
}

@media (max-width: 1200px) {
    body.clean-theme .pantheon-strip {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    body.clean-theme .pantheon-strip {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    body.clean-theme .pantheon-badge-card {
        min-height: auto !important;
    }
}

/* 3. Header & Navigation Adjustments */
body.clean-theme header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

body.clean-theme header.scrolled {
    border-bottom: 1px solid #cbd5e1 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
}

body.clean-theme .logo,
body.clean-theme .logo span {
    color: #0f172a !important;
}

body.clean-theme .nav-link {
    color: #475569 !important;
}

body.clean-theme .nav-link:hover,
body.clean-theme .nav-link.active {
    color: #0284c7 !important;
}

body.clean-theme .nav-link::after {
    background: #0284c7 !important;
    box-shadow: none !important;
}

body.clean-theme .mobile-nav-toggle {
    color: #0f172a !important;
}

/* 4. Glass Panels & Cards -> Minimal White Cards */
body.clean-theme .glass-panel,
body.clean-theme .terminal-card,
body.clean-theme .course-card,
body.clean-theme .mentorship-card,
body.clean-theme .primus-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
    color: #1e293b !important;
}

body.clean-theme .glass-panel:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

body.clean-theme .glow-text-cyan,
body.clean-theme .glow-text-magenta {
    color: #0f172a !important;
    text-shadow: none !important;
}

body.clean-theme .primus-title {
    color: #0284c7 !important;
}

body.clean-theme .primus-card::after {
    background: #0284c7 !important;
    box-shadow: none !important;
}

body.clean-theme .primus-badge {
    background: #0284c7 !important;
    color: #ffffff !important;
}

body.clean-theme .primus-quote {
    border-left-color: #cbd5e1 !important;
    color: #64748b !important;
}

/* 5. Academy pricing and details */
body.clean-theme .course-card::before {
    background: #0284c7 !important;
    box-shadow: none !important;
}

body.clean-theme .course-badge {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0 !important;
}

body.clean-theme .course-price {
    color: #0f172a !important;
    text-shadow: none !important;
}

body.clean-theme .mentorship-list li {
    color: #475569 !important;
}

body.clean-theme .mentorship-list li::before {
    color: #0284c7 !important;
    text-shadow: none !important;
}

/* 6. Session booking workflow and specs */
body.clean-theme .step-num {
    color: #0284c7 !important;
    background: #f0f9ff !important;
    border: 1px solid #bae6fd !important;
    box-shadow: none !important;
}

body.clean-theme .step-title {
    color: #0f172a !important;
}

body.clean-theme .step-desc {
    color: #475569 !important;
}

body.clean-theme .gear-item {
    border-left-color: #cbd5e1 !important;
}

body.clean-theme .gear-label {
    color: #475569 !important;
}

body.clean-theme .gear-val {
    color: #1e293b !important;
}

/* 7. Booking Terminal Inputs (High Contrast White Inputs) */
body.clean-theme .terminal-header {
    border-bottom: 1px solid #e2e8f0 !important;
}

body.clean-theme .terminal-title {
    color: #0f172a !important;
}

body.clean-theme .terminal-indicator {
    background: #0284c7 !important;
    box-shadow: none !important;
    animation: none !important;
}

body.clean-theme .form-group label {
    color: #475569 !important;
}

body.clean-theme .terminal-input {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}

body.clean-theme .terminal-input:focus {
    border-color: #0284c7 !important;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
    background: #ffffff !important;
}

body.clean-theme select.terminal-input {
    background-color: #ffffff !important;
}

body.clean-theme select.terminal-input option {
    background-color: #ffffff !important;
    color: #0f172a !important;
}

/* 8. Synthesized Action Buttons */
body.clean-theme .btn-cyber {
    box-shadow: none !important;
}

body.clean-theme .btn-cyan {
    background: #0f172a !important;
    color: #ffffff !important;
    border: 1px solid #0f172a !important;
}

body.clean-theme .btn-cyan:hover {
    background: #1e293b !important;
    color: #ffffff !important;
}

body.clean-theme .btn-outline {
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    background: transparent !important;
}

body.clean-theme .btn-outline:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

body.clean-theme .btn-magenta {
    background: #0284c7 !important;
    color: #ffffff !important;
    border: 1px solid #0284c7 !important;
}

body.clean-theme .btn-magenta:hover {
    background: #0369a1 !important;
    color: #ffffff !important;
}

/* 9. Sessions listing & dynamic tags */
body.clean-theme .disco-search input {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}

body.clean-theme .disco-search input:focus {
    border-color: #0284c7 !important;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
}

body.clean-theme .filter-btn {
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
}

body.clean-theme .filter-btn:hover,
body.clean-theme .filter-btn.active {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
}

body.clean-theme .disco-header-title {
    color: #0f172a !important;
}

body.clean-theme .disco-header-year {
    color: #0284c7 !important;
}

body.clean-theme .disco-detail-item span {
    color: #0284c7 !important;
}

body.clean-theme .disco-card {
    border-color: #e2e8f0 !important;
}

/* 10. Pantheon Badges Credentials List */
body.clean-theme .pantheon-badge-card {
    border-color: #e2e8f0 !important;
    background: #ffffff !important;
}

body.clean-theme .pantheon-badge-card:hover {
    border-color: #0284c7 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

body.clean-theme .badge-name {
    color: #0f172a !important;
}

/* 11. Sponsors & Clean Light Footer */
body.clean-theme .sponsors-wrap {
    background: #f1f5f9 !important;
    border-top: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

body.clean-theme .sponsor-logo {
    color: #475569 !important;
}

body.clean-theme .sponsor-logo:hover {
    color: #0284c7 !important;
    text-shadow: none !important;
}

body.clean-theme footer {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
}

body.clean-theme footer h3 {
    color: #0f172a !important;
    text-shadow: none !important;
}

body.clean-theme footer p {
    color: #475569 !important;
}

body.clean-theme .footer-email {
    color: #0284c7 !important;
}

body.clean-theme .footer-email:hover {
    color: #0369a1 !important;
    text-shadow: none !important;
}

body.clean-theme .social-link {
    color: #475569 !important;
}

body.clean-theme .social-link:hover {
    color: #0284c7 !important;
}

body.clean-theme .footer-bottom {
    border-top: 1px solid #e2e8f0 !important;
    color: #94a3b8 !important;
}

body.clean-theme .footer-bottom a {
    color: #64748b !important;
}

body.clean-theme .footer-bottom a:hover {
    color: #0284c7 !important;
}

/* 12. Success Dialog Modals (Clean white look) */
body.clean-theme .success-modal {
    background: rgba(255, 255, 255, 0.98) !important;
}

body.clean-theme .success-modal-content {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

body.clean-theme .success-icon {
    color: #0284c7 !important;
    text-shadow: none !important;
    animation: none !important;
}

/* Custom Scrollbar override for clean mode */
body.clean-theme::-webkit-scrollbar-track {
    background: #f8fafc;
}
body.clean-theme::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}
body.clean-theme::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
    box-shadow: none !important;
}

/* ==========================================
   SUPPORT THE ARTIST WIDGET
   ========================================== */
.support-artist-panel {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border: var(--border-glow);
    border-radius: 12px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-smooth);
}

.support-artist-panel:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 8px 32px rgba(0, 242, 254, 0.05);
}

.support-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-main-title {
    font-size: 0.95rem;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.support-subtitle {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.support-options-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.support-btn-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(12, 16, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}

.support-btn-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
    background: rgba(0, 242, 254, 0.05);
    color: var(--accent-cyan);
}

#support-pix:hover {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 10px rgba(243, 85, 136, 0.2);
    background: rgba(243, 85, 136, 0.05);
    color: var(--accent-magenta);
}

/* Responsive Support Panel */
@media (max-width: 992px) {
    .support-artist-panel {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    .support-options-grid {
        justify-content: center;
        width: 100%;
    }
}

/* Clean theme support overrides */
body.clean-theme .support-artist-panel {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    color: #1e293b !important;
}

body.clean-theme .support-artist-panel:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

body.clean-theme .support-main-title {
    color: #0f172a !important;
    text-shadow: none !important;
}

body.clean-theme .support-subtitle {
    color: #475569 !important;
}

body.clean-theme .support-btn-item {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
}

body.clean-theme .support-btn-item:hover {
    border-color: #0284c7 !important;
    background: #f0f9ff !important;
    color: #0284c7 !important;
    box-shadow: none !important;
}

body.clean-theme #support-pix:hover {
    border-color: #0284c7 !important;
    background: #f0f9ff !important;
    color: #0284c7 !important;
}

/* ==========================================
   ACADEMY SURVEY WISHLIST WIDGET
   ========================================== */
.survey-option input[type="checkbox"] {
    cursor: pointer;
}

body.clean-theme .survey-option {
    color: #475569 !important;
}

body.clean-theme #course-card-wishlist {
    border-color: #e2e8f0 !important;
    background: #ffffff !important;
}
