/* ==========================================================================
   ZAID AL KHUDARI — LUXURY DJ PORTFOLIO STYLESHEET
   Fully responsive across Desktop, Tablet, and Mobile screens.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
    --bg-black: #000000;
    --bg-dark-card: #0a0a0c;
    --bg-white-box: #ffffff;
    --text-white: #ffffff;
    --text-muted: #8e8e93;
    --text-subtle: #55555d;
    --text-dark: #000000;
    --border-thin: rgba(255, 255, 255, 0.12);
    --border-light: rgba(255, 255, 255, 0.3);
    
    --font-display: 'Syne', 'Montserrat', -apple-system, sans-serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    
    --ease-out-cubic: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    
    --left-width: 34%;
    --right-width: 66%;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    min-height: 100vh;
    opacity: 0;
    transition: opacity 1s var(--ease-out-cubic);
}

body.is-loaded {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   2. GRAIN NOISE & CURSOR OVERLAYS
   -------------------------------------------------------------------------- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: var(--text-white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-cubic), height 0.3s var(--ease-out-cubic), border-color 0.3s ease;
}

body:hover .cursor-ring.is-hovering {
    width: 60px;
    height: 60px;
    border-color: #ffffff;
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.logo-bold {
    font-weight: 900;
}

.logo-light {
    font-weight: 400;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-item {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--text-white);
    transition: width 0.4s var(--ease-out-cubic);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-white);
}

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

.header-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.bar-line {
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s var(--ease-out-cubic), opacity 0.3s ease;
    align-self: flex-end;
}

.mobile-nav-toggle.is-active .bar-line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-nav-toggle.is-active .bar-line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. SPLIT SCREEN MAIN LAYOUT
   -------------------------------------------------------------------------- */
.main-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.left-hero-frame {
    width: var(--left-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #000000;
    z-index: 10;
}

.portrait-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000000;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    filter: grayscale(100%) contrast(115%) brightness(100%);
    transform: none !important;
    transition: none !important;
}

.portrait-wrapper:hover .portrait-img {
    transform: none !important;
}

.portrait-badges {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
}

.right-content-stream {
    width: var(--right-width);
    margin-left: var(--left-width);
    min-height: 100vh;
    padding-left: 4rem;
    padding-right: 4rem;
    background-color: var(--bg-black);
}

/* --------------------------------------------------------------------------
   5. SECTIONS GENERAL STYLING
   -------------------------------------------------------------------------- */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-thin);
}

.section-label {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.section-num {
    color: #ffffff;
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.thick-bar {
    height: 36px;
    background-color: #ffffff;
    flex: 1;
    min-width: 20px;
    transform: scaleX(0);
    transition: transform 1.2s var(--ease-out-cubic);
}

.thick-bar-left {
    transform-origin: right center;
}

.thick-bar-right {
    transform-origin: left center;
}

.thick-bar.is-expanded {
    transform: scaleX(1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    margin: 0;
    display: flex;
    justify-content: center;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.7s var(--ease-out-cubic), transform 0.7s var(--ease-out-cubic);
    will-change: transform, opacity;
}

.hero-title.is-visible .char {
    opacity: 1;
    transform: translateY(0%);
}

.hero-title .space {
    width: 0.3em;
}

.hero-subtitle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--ease-out-cubic), transform 1s var(--ease-out-cubic);
    transition-delay: 0.6s;
    margin-bottom: 2.5rem;
}

.hero-subtitle-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle-outline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.25em;
    color: transparent;
    -webkit-text-stroke: 3px #ffffff;
    text-stroke: 3px #ffffff;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.subtitle-desc {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 1rem;
    text-align: center;
}

.bottom-right-accent-line {
    position: absolute;
    bottom: 4rem;
    right: 0;
    width: 45%;
    height: 3px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 1.4s var(--ease-out-cubic);
    transition-delay: 0.8s;
}

.bottom-right-accent-line.is-expanded {
    transform: scaleX(1);
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
    align-items: center;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2rem;
    background-color: var(--text-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s var(--ease-out-cubic), box-shadow 0.3s ease;
    border: 1px solid var(--text-white);
    text-align: center;
}

.btn-primary:hover {
    background-color: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    transition: transform 0.3s var(--ease-out-cubic);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2rem;
    background-color: transparent;
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid var(--border-light);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.08);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-subtle);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background-color: var(--text-subtle);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--text-white);
    animation: scrollLineAnim 2s infinite var(--ease-in-out-smooth);
}

@keyframes scrollLineAnim {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-box {
    background-color: var(--bg-white-box);
    color: var(--text-dark);
    padding: 4rem;
    position: relative;
    transform: translateX(80px);
    opacity: 0;
    transition: transform 1.2s var(--ease-out-cubic), opacity 1.2s var(--ease-out-cubic);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.about-box.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.about-box-inner {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.3s;
}

.about-box.is-visible .about-box-inner {
    opacity: 1;
    transform: translateY(0);
}

.about-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #555;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #000000;
}

.about-text-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #222222;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text-content strong {
    color: #000000;
    font-weight: 800;
}

.about-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-num-wrap {
    display: flex;
    align-items: baseline;
}

.metric-num {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    color: #000000;
}

.metric-plus {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: #666;
}

.metric-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #555;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.metric-divider {
    width: 2px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   8. ARTISTS / EXPERIENCE SECTION
   -------------------------------------------------------------------------- */
.experience-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 1s var(--ease-out-cubic), opacity 1s var(--ease-out-cubic);
}

.experience-title.is-visible {
    transform: scale(1);
    opacity: 1;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exp-item {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic), border-color 0.3s ease, background-color 0.3s ease;
    transition-delay: var(--delay, 0ms);
    position: relative;
    overflow: hidden;
}

.exp-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.exp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background-color: #ffffff;
    transition: height 0.4s var(--ease-out-cubic);
}

.exp-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: #121216;
}

.exp-item:hover::before {
    height: 100%;
}

.exp-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.exp-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.exp-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-grow: 1;
}

.exp-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    text-transform: uppercase;
}

.exp-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    padding-left: 3rem;
}

/* --------------------------------------------------------------------------
   9. VIDEO SHOWCASE & MODAL LIGHTBOX STYLES
   -------------------------------------------------------------------------- */
.video-header {
    margin-bottom: 3.5rem;
}

.video-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.video-section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-cubic), border-color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
    background-color: #121216;
}

.video-thumbnail-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #000;
}

.video-thumb-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) contrast(110%);
    transition: filter 0.5s ease, transform 0.6s var(--ease-out-cubic);
}

.video-card:hover .video-thumb-preview {
    filter: grayscale(0%) contrast(115%);
    transform: scale(1.05);
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.video-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.3rem 0.8rem;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.8rem;
    z-index: 2;
}

.video-play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-cubic), background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-card:hover .video-play-trigger {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.video-card-meta {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-venue {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

.video-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-white);
}

/* VIDEO LIGHTBOX MODAL */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-cubic);
}

.video-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
}

.video-modal-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 960px;
    background-color: #0d0d10;
    border: 1px solid var(--border-light);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.4s var(--ease-out-cubic);
}

.video-modal.is-open .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-thin);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-modal-close:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.1);
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--border-thin);
}

.video-modal-venue {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.video-modal-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. MEDIA / EQUALIZER SECTION
   -------------------------------------------------------------------------- */
.media-container {
    background: linear-gradient(135deg, #0e0e12, #050507);
    border: 1px solid var(--border-thin);
    padding: 3.5rem;
    position: relative;
}

.sound-wave-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sound-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.now-playing-tag {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: #ffffff;
    font-weight: 800;
}

.track-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.equalizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    padding: 10px 0;
}

.equalizer-bars .bar {
    flex: 1;
    background: linear-gradient(to top, rgba(255,255,255,0.2), #ffffff);
    height: 15%;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.equalizer-bars.is-playing .bar {
    animation: barPulse 1.2s infinite ease-in-out alternate;
}

.equalizer-bars.is-playing .bar:nth-child(1) { animation-delay: 0.1s; }
.equalizer-bars.is-playing .bar:nth-child(2) { animation-delay: 0.4s; }
.equalizer-bars.is-playing .bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer-bars.is-playing .bar:nth-child(4) { animation-delay: 0.6s; }
.equalizer-bars.is-playing .bar:nth-child(5) { animation-delay: 0.3s; }
.equalizer-bars.is-playing .bar:nth-child(6) { animation-delay: 0.5s; }
.equalizer-bars.is-playing .bar:nth-child(7) { animation-delay: 0.15s; }
.equalizer-bars.is-playing .bar:nth-child(8) { animation-delay: 0.45s; }
.equalizer-bars.is-playing .bar:nth-child(9) { animation-delay: 0.25s; }
.equalizer-bars.is-playing .bar:nth-child(10) { animation-delay: 0.55s; }
.equalizer-bars.is-playing .bar:nth-child(11) { animation-delay: 0.35s; }
.equalizer-bars.is-playing .bar:nth-child(12) { animation-delay: 0.65s; }

@keyframes barPulse {
    0% { height: 10%; }
    100% { height: 100%; }
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s var(--ease-out-cubic);
}

.play-btn:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
}

.hidden {
    display: none !important;
}

/* --------------------------------------------------------------------------
   11. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-header {
    margin-bottom: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.contact-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.card-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--text-subtle);
}

.contact-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 0.05em;
    word-break: break-all;
}

.link-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.4s var(--ease-out-cubic);
}

.link-underline:hover::after {
    width: 100%;
}

.copy-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: var(--text-white);
}

.social-section {
    margin-top: 3rem;
}

.social-heading {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-thin);
    padding: 2rem 2.5rem;
    text-decoration: none;
    color: var(--text-white);
    transition: transform 0.4s var(--ease-out-cubic), opacity 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.social-card:hover {
    transform: scale(1.02);
    opacity: 0.95;
    border-color: rgba(255, 255, 255, 0.4);
    background-color: #121216;
}

.social-platform {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.25rem;
}

.social-handle {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.social-arrow {
    transition: transform 0.4s var(--ease-out-cubic);
}

.social-card:hover .social-arrow {
    transform: translate(4px, -4px);
}

/* --------------------------------------------------------------------------
   12. FOOTER & TOAST
   -------------------------------------------------------------------------- */
.site-footer {
    margin-top: 8rem;
    padding-bottom: 4rem;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: var(--border-thin);
    margin-bottom: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-subtle);
    text-transform: uppercase;
}

.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--text-white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out-cubic), transform 0.4s var(--ease-out-cubic);
    pointer-events: none;
    z-index: 10000;
}

.toast-notification.is-active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-cubic), transform 1s var(--ease-out-cubic);
    will-change: transform, opacity;
}

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

/* --------------------------------------------------------------------------
   13. RESPONSIVE RULES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .site-header {
        padding: 0 1.5rem;
        height: 70px;
    }
    
    .header-status {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: opacity 0.4s var(--ease-out-cubic), transform 0.4s var(--ease-out-cubic);
        z-index: 999;
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-item {
        font-size: 1.1rem;
        letter-spacing: 0.3em;
    }

    .main-layout {
        flex-direction: column;
    }

    .left-hero-frame {
        width: 100%;
        height: 52vh;
        max-height: 480px;
        min-height: 340px;
        position: relative;
        sticky: static;
        border-right: none;
        background-color: #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 70px;
    }

    .portrait-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000000;
        position: relative;
    }

    .portrait-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        filter: grayscale(100%) contrast(110%) brightness(100%);
        transform: none !important;
        transition: none !important;
    }

    .portrait-badges {
        bottom: 0.75rem;
        left: 1.25rem;
        right: 1.25rem;
        font-size: 0.55rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
    }

    .right-content-stream {
        width: 100%;
        margin-left: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section {
        min-height: auto;
        padding: 4.5rem 0;
    }

    .hero-banner-wrap {
        gap: 0.6rem;
        margin-bottom: 0.75rem;
    }

    .thick-bar {
        height: 18px;
        min-width: 15px;
    }

    .hero-title {
        font-size: clamp(1.15rem, 5.2vw, 2.5rem);
        letter-spacing: 0.02em;
    }

    .hero-subtitle-outline {
        font-size: clamp(2.2rem, 8vw, 4rem);
        -webkit-text-stroke: 2px #ffffff;
    }

    .subtitle-desc {
        font-size: 0.6rem;
        letter-spacing: 0.22em;
        line-height: 1.4;
    }

    .bottom-right-accent-line {
        width: 65%;
        bottom: 2.5rem;
        height: 2px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.9rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .about-box {
        padding: 2rem 1.5rem;
        transform: translateY(40px);
    }

    .about-box.is-visible {
        transform: translateY(0);
    }

    .about-heading {
        font-size: 1.3rem;
    }

    .about-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .metric-divider {
        display: none;
    }

    .exp-item {
        padding: 1.75rem 1.25rem;
    }

    .exp-header {
        gap: 1rem;
    }

    .exp-desc {
        padding-left: 0;
        margin-top: 0.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-card-meta {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .media-container {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    .social-card {
        padding: 1.5rem 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .left-hero-frame {
        height: 48vh;
        max-height: 400px;
        min-height: 300px;
    }

    .thick-bar {
        height: 14px;
        min-width: 10px;
    }

    .hero-title {
        font-size: clamp(1rem, 4.8vw, 1.8rem);
    }

    .hero-subtitle-outline {
        font-size: 2.2rem;
        -webkit-text-stroke: 1.5px #ffffff;
    }
}
