/* ============================================
   DJ JIXE — LIVE WIRE Portfolio
   Base Styles & CSS Variables
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --bg-deep: #050505;
    --bg-surface: #111111;
    --bg-surface-alt: #0A0A0A;
    --accent-cyan: #00E5FF;
    --accent-pink: #FF0080;
    --accent-purple: #8B5CF6;
    --accent-red: #FF5252;
    --text-primary: #F0F0F0;
    --text-secondary: #7A7A7A;
    --border-subtle: rgba(255, 255, 255, 0.06);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing */
    --section-padding: 6rem 2rem;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.3s;
    --duration-slow: 0.6s;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* Selection */
::selection {
    background: var(--accent-pink);
    color: var(--bg-deep);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================
   Layout
   ============================================ */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
    position: relative;
}

/* ============================================
   Navigation
   ============================================ */

#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: background-color var(--duration-normal) var(--ease-out),
                backdrop-filter var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

#main-nav.scrolled {
    background-color: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 0.15rem 0;
}

.nav-logo-img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(1) drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
    transition: filter var(--duration-fast) var(--ease-out),
                transform var(--duration-fast) var(--ease-out);
}

.nav-logo:hover .nav-logo-img {
    filter: brightness(1.2) drop-shadow(0 0 16px rgba(0, 229, 255, 0.6));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-pink) !important;
    color: var(--bg-deep) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 4px;
    font-weight: 600;
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out) !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform var(--duration-normal) var(--ease-out),
                opacity var(--duration-fast) var(--ease-out);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 6px;
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out),
                background-color var(--duration-fast) var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-deep);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: scale(1.05);
}

/* ============================================
   Preloader
   ============================================ */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4)) drop-shadow(0 0 40px rgba(255, 0, 128, 0.2));
    animation: logoPulse 0.8s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4)) drop-shadow(0 0 40px rgba(255, 0, 128, 0.2));
    }
    100% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.7)) drop-shadow(0 0 60px rgba(255, 0, 128, 0.4));
    }
}

.equalizer {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 1.5rem 0;
    height: 30px;
    align-items: flex-end;
}

.equalizer .bar {
    width: 4px;
    background: linear-gradient(to top, var(--accent-pink), var(--accent-cyan));
    border-radius: 2px;
    animation: equalize 0.8s ease-in-out infinite alternate;
}

.equalizer .bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.equalizer .bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.equalizer .bar:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.equalizer .bar:nth-child(4) { height: 15px; animation-delay: 0.3s; }
.equalizer .bar:nth-child(5) { height: 25px; animation-delay: 0.15s; }

.loading-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blink 1s step-end infinite;
}

@keyframes equalize {
    0% { height: 8px; }
    100% { height: 30px; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   Utility Classes
   ============================================ */

.text-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-pink);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--duration-fast) var(--ease-out);
}

.text-link:hover {
    gap: 0.75rem;
    color: var(--accent-cyan);
}

.placeholder-embed {
    background: rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px dashed var(--border-subtle);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    min-height: 150px;
    transition: border-color var(--duration-fast) var(--ease-out);
}

.placeholder-embed:hover {
    border-color: var(--accent-cyan);
    background: rgba(13, 13, 13, 0.6);
}

.placeholder-embed svg {
    width: 2rem;
    height: 2rem;
    stroke: currentColor;
    opacity: 0.5;
}

.placeholder-embed span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.placeholder-reel {
    background: rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px dashed var(--border-subtle);
    border-radius: 8px;
    aspect-ratio: 9/16;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    transition: border-color var(--duration-fast) var(--ease-out),
                background-color var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.placeholder-reel:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.08);
}

.placeholder-reel svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: currentColor;
    opacity: 0.4;
}

.placeholder-reel span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */

/* Full-Page Video Background */
.page-video-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.page-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Glass Zone — single continuous glass pane from About to Booking */
.glass-zone {
    position: relative;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.00) 0%,
        rgba(5, 5, 5, 0.15) 5%,
        rgba(5, 5, 5, 0.45) 12%,
        rgba(5, 5, 5, 0.55) 25%,
        rgba(5, 5, 5, 0.55) 75%,
        rgba(5, 5, 5, 0.45) 88%,
        rgba(5, 5, 5, 0.15) 95%,
        rgba(5, 5, 5, 0.00) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* Subtle edge glow — no hard border */
    box-shadow:
        0 -60px 80px -40px rgba(0, 229, 255, 0.04),
        0 60px 80px -40px rgba(0, 229, 255, 0.04);
}

/* Inner sections — transparent, no individual glass backgrounds */
.glass-section {
    background: transparent;
    margin: 0;
    position: relative;
}

.glass-section .section-container {
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 3rem;
    transition: border-color var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
    border-color: rgba(0, 229, 255, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

#hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

/* Hero spotlight vignette */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at center 40%, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Hero Background Mesh */
.hero-bg-mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    top: -10%;
    left: -5%;
    animation: drift-1 25s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-pink);
    bottom: -15%;
    right: -10%;
    animation: drift-2 30s ease-in-out infinite;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: 40%;
    left: 50%;
    animation: drift-3 20s ease-in-out infinite;
}

@keyframes drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, -40px) scale(1.1); }
    50% { transform: translate(-30px, 60px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

@keyframes drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-60px, 30px) scale(1.05); }
    50% { transform: translate(40px, -50px) scale(1.1); }
    75% { transform: translate(-20px, -20px) scale(0.95); }
}

@keyframes drift-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(calc(-50% + 60px), calc(-50% - 30px)) scale(1.1); }
    66% { transform: translate(calc(-50% - 40px), calc(-50% + 50px)) scale(0.9); }
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Logo */
.hero-logo-wrapper {
    margin-bottom: 1.5rem;
}

.hero-logo {
    height: clamp(60px, 10vw, 130px);
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.3)) drop-shadow(0 0 60px rgba(255, 0, 128, 0.15));
    animation: heroLogoFloat 3s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.3)) drop-shadow(0 0 60px rgba(255, 0, 128, 0.15));
    }
    50% {
        transform: translateY(-6px);
        filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.5)) drop-shadow(0 0 80px rgba(255, 0, 128, 0.3));
    }
}

/* Hero Photo */
.hero-photo-wrapper {
    position: relative;
    margin-bottom: 2rem;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
}

.photo-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    opacity: 0.5;
    filter: blur(20px);
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; filter: blur(20px); }
    50% { opacity: 0.7; filter: blur(25px); }
}

.hero-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    border: 3px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    transition: transform var(--duration-normal) var(--ease-out);
    display: block;
    transform: translate(-50%, -50%) scale(1.4);
}

.hero-photo:hover {
    transform: translate(-50%, -50%) scale(1.5);
}


/* Tagline */
.tagline {
    font-family: var(--font-mono);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    color: var(--accent-pink);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    min-height: 1.5em;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Socials */
.hero-socials {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-socials a {
    color: var(--text-secondary);
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    transition: color var(--duration-fast) var(--ease-out),
                transform var(--duration-fast) var(--ease-out);
}

.hero-socials a svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.hero-socials a:hover {
    color: var(--accent-cyan);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity var(--duration-fast) var(--ease-out);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.chevron {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
    50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ============================================
   SECTION 2: ABOUT
   ============================================ */

#about {
    padding-top: calc(var(--section-padding) + 2rem);
}

@media (max-width: 768px) {
    #about {
        padding-top: 4rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Photo */
.about-photo-wrapper {
    position: relative;
}

.about-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform var(--duration-normal) var(--ease-out);
}

.about-photo:hover {
    transform: translateY(-4px);
}

/* About Text */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 0;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
}

.location-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   SECTION 3: LIVE MIXES (Instagram Grid)
   ============================================ */

#mixes {
    padding: var(--section-padding);
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.ig-card {
    border-radius: 8px;
    background: rgba(13, 13, 13, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-normal) var(--ease-out);
}

.ig-card .embed-container iframe {
    display: block;
    width: 100%;
    border-radius: 8px;
    border: none;
}

.ig-card:hover {
    transform: scale(1.02);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   SECTION 4: MUSIC (SoundCloud + Spotify)
   ============================================ */

#music {
    padding: var(--section-padding);
}

.music-featured {
    margin-bottom: 2rem;
}

.sc-embed-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.sc-embed-wrapper iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spotify-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--duration-normal) var(--ease-out);
}

.spotify-card:hover {
    transform: translateY(-2px);
}

.spotify-card iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

.music-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.music-links a {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color var(--duration-fast) var(--ease-out),
                transform var(--duration-fast) var(--ease-out);
}

.music-links a:hover {
    color: var(--accent-cyan);
    transform: scale(1.15);
}

/* Playlist Labels */
.playlist-labels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0 2rem;
    text-align: center;
}

.playlist-labels span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: rgba(13, 13, 13, 0.3);
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
    .playlist-labels {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SECTION 5: SERVICES
   ============================================ */

#services {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Tablet: 2-col */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3-2 centered layout using 6-col grid */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .services-grid .service-card:not(.service-card-secondary) {
        grid-column: span 2;
    }
    .services-grid .service-card-secondary:nth-child(4) {
        grid-column: 2 / 4;
    }
    .services-grid .service-card-secondary:nth-child(5) {
        grid-column: 4 / 6;
    }
}

.service-card {
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid transparent;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--duration-normal) var(--ease-out),
                border-color var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.2);
    background: rgba(13, 13, 13, 0.7);
}

.service-card svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent-cyan);
    stroke: currentColor;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Secondary cards: slightly subtler */
.service-card-secondary {
    opacity: 0.9;
}

.service-card-secondary:hover {
    opacity: 1;
}

/* ============================================
   SECTION 6: GIGS
   ============================================ */

#gigs {
    padding: var(--section-padding);
}

.gigs-wrapper {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.gigs-category {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

/* Past Gig Card */
.gig-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(13, 13, 13, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: border-color var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.gig-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.08);
}

.gig-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.75rem;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 8px;
    text-align: center;
}

.gig-month {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    text-transform: uppercase;
}

.gig-day {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.gig-info {
    flex: 1;
}

.gig-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.gig-city {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.gig-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background: rgba(122, 122, 122, 0.15);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

/* Upcoming CTA Card */
.gig-cta-card {
    text-align: center;
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px dashed rgba(0, 229, 255, 0.25);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: border-color var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.gig-cta-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 4px 25px rgba(0, 229, 255, 0.1);
}

.gig-cta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gig-cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.gig-cta-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.gig-cta-btn {
    display: inline-flex;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
}

/* Genre Marquee */
.genre-marquee {
    overflow: hidden;
    white-space: nowrap;
    margin-top: 2.5rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.genre-marquee .marquee-content {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-copy {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    opacity: 0.5;
    flex-shrink: 0;
}

.marquee-copy .dot {
    margin: 0 1.25rem;
    opacity: 0.4;
    font-size: 0.7rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



/* ============================================
   SECTION 7: TESTIMONIALS
   ============================================ */

#testimonials {
    padding: var(--section-padding);
}

.testimonial-carousel {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.testimonial-card {
    text-align: center;
    padding: 2rem;
    display: none;
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.testimonial-card.active {
    display: block;
    animation: fadeInTestimonial 0.5s var(--ease-out);
}

@keyframes fadeInTestimonial {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stars {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
}

.quote {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.attribution {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: normal;
}

.social-proof {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-pink);
}

/* ============================================
   SECTION 8: BOOKING / CONTACT
   ============================================ */

#booking {
    padding: var(--section-padding);
}

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
}

.booking-card .section-title {
    text-align: center;
}

.booking-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

/* Booking CTA Buttons */
.booking-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-whatsapp,
.btn-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: var(--accent-cyan);
    color: var(--bg-deep);
}

.btn-email:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.btn-whatsapp svg,
.btn-email svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Booking Form */
.booking-form-wrapper {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    margin-bottom: 1rem;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(122, 122, 122, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237A7A7A' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--bg-deep);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-cyan);
    color: var(--bg-deep);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

/* ============================================
   Floating Music Player
   ============================================ */

#music-player {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.music-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--accent-cyan);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.music-toggle-btn:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 4px 30px rgba(255, 0, 128, 0.3);
    transform: scale(1.1);
}

.music-toggle-btn:active {
    transform: scale(0.95);
}

.music-toggle-btn.playing {
    border-color: var(--accent-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3), 0 0 40px rgba(0, 229, 255, 0.15);
    animation: musicPulse 2s ease-in-out infinite;
}

.music-toggle-btn.muted {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    opacity: 0.6;
}

.music-icon {
    transition: transform 0.3s ease;
    stroke: currentColor;
    flex-shrink: 0;
}

.music-toggle-btn.playing .music-icon {
    animation: iconSpin 4s linear infinite;
}

.music-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-toggle-btn.playing .music-pulse {
    opacity: 1;
    border-color: var(--accent-pink);
    animation: ringPulse 2s ease-out infinite;
}

.music-tooltip {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

#music-player:hover .music-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Music Player - now playing indicator */
.music-toggle-btn.playing::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
}

/* Equalizer bars next to button when playing */
.music-eq {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
}

.music-eq.active {
    display: flex;
}

.music-eq .eq-bar {
    width: 2px;
    background: linear-gradient(to top, var(--accent-pink), var(--accent-cyan));
    border-radius: 1px;
    animation: eqBounce 0.6s ease-in-out infinite alternate;
}

.music-eq .eq-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.music-eq .eq-bar:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.music-eq .eq-bar:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.music-eq .eq-bar:nth-child(4) { height: 12px; animation-delay: 0.15s; }

/* Music Player Animations */
@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 128, 0.2), 0 0 30px rgba(0, 229, 255, 0.1); }
    50% { box-shadow: 0 0 25px rgba(255, 0, 128, 0.4), 0 0 50px rgba(0, 229, 255, 0.2); }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes eqBounce {
    0% { transform: scaleY(0.5); }
    100% { transform: scaleY(1); }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    padding: 2rem;
    border-top: 1px solid var(--border-subtle);
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-left {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    transition: color var(--duration-fast) var(--ease-out),
                transform var(--duration-fast) var(--ease-out);
}

.footer-socials a svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: currentColor;
}

.footer-socials a:hover {
    color: var(--accent-cyan);
    transform: scale(1.15);
}

.back-to-top {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: color var(--duration-fast) var(--ease-out);
}

.back-to-top:hover {
    color: var(--accent-cyan);
}

/* ============================================
   SCROLL ANIMATION STATES (GSAP Initial)
   ============================================ */

/* Elements start hidden before GSAP reveals them */
.gsap-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.gsap-reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.gsap-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* ============================================
   RESPONSIVE — Mobile Breakpoints
   ============================================ */

/* Tablet and below (<= 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }

    /* Nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hero */
    .hero-container {
        padding: 0 1rem;
    }

    .hero-photo-wrapper {
        width: 140px;
        height: 140px;
    }

    .hero-logo {
        height: clamp(45px, 8vw, 80px);
    }

    #hero {
        padding: 5rem 1rem 3rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .about-photo {
        max-width: 100%;
        aspect-ratio: 3/4;
        max-height: 400px;
        object-fit: cover;
    }

    .about-text .section-title {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* IG Grid - 2 columns on mobile */
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .ig-card .embed-container iframe {
        height: 350px;
    }

    /* Spotify */
    .spotify-grid {
        grid-template-columns: 1fr;
    }

    /* Services: already handled by mobile-first CSS */
    .services-grid {
        gap: 1rem;
        padding: 0;
    }

    .section-container {
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    /* Gigs */
    .gig-card {
        padding: 1.25rem 1.5rem;
    }

    .gig-cta-card {
        padding: 2rem 1.5rem;
    }

    /* Booking */
    .booking-card {
        padding: 2rem 1.5rem;
    }

    .booking-cta-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    /* Marquee */
    .marquee-content {
        animation-duration: 30s;
    }

    /* Mobile Video Background */
    .page-video-bg video {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

/* Small phones (<= 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-photo-wrapper {
        width: 110px;
        height: 110px;
    }

    #hero {
        padding: 4.5rem 1rem 2.5rem;
    }

    .hero-logo {
        height: clamp(40px, 12vw, 60px);
    }

    .gig-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .gig-info {
        text-align: center;
    }

    .marquee-copy {
        font-size: 0.75rem;
    }

    .genre-marquee .marquee-content {
        animation-duration: 30s;
    }

    .ig-grid {
        grid-template-columns: 1fr;
    }

    .ig-card .embed-container iframe {
        height: 280px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    /* Floating music player mobile */
    #music-player {
        bottom: 1rem;
        right: 1rem;
    }

    .music-toggle-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .music-tooltip {
        display: none;
    }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg-deep);
    flex-direction: column;
}

.mobile-menu-overlay.active {
    display: flex;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}
