/* ==========================================
   MURDA WORLD - Artist Profile Site
   ========================================== */

/* --- FONTS --- */
@font-face {
    font-family: 'Eurostile';
    src: url('../../img/Eurostile LT Std Roman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Eurostile';
    src: url('../../img/Eurostile LT Std Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Eurostile';
    src: url('../../img/Eurostile LT Std Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Eurostile Extended';
    src: url('../../img/Eurostile LT Std Bold Extended 2.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Eurostile Light';
    src: url('../../img/Eurostile Next LT W04 Ult Light.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

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

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --darker: #1a1a1a;
    --gray: #333333;
    --mid-gray: #666666;
    --light-gray: #999999;
    --white: #f0f0f0;
    --accent: #ff3b3b;
    --accent-dark: #cc2e2e;
    --gold: #d4a853;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Eurostile', 'Helvetica Neue', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* cursor kept default */

/* --- LOADER --- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray);
    margin-top: 30px;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar-inner {
    width: 0%;
    height: 100%;
    background: var(--white);
    animation: load 1.5s ease-in-out forwards;
}

@keyframes load {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 40px;
}

.nav-logo img {
    height: 50px;
    filter: invert(1);
    transition: height 0.4s ease;
}

.nav.scrolled .nav-logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: 'Eurostile', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--white);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.4s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- MOBILE NAV --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 28px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.mobile-nav.active a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.5s; }

/* --- HERO --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.4);
    transform: translateY(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0) 30%,
        rgba(10, 10, 10, 0) 60%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: clamp(60px, 12vw, 180px);
    letter-spacing: 15px;
    text-transform: uppercase;
    line-height: 0.9;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards 1.5s;
}

.hero-subtitle {
    font-family: 'Eurostile Light', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.8s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 2.2s;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.3); opacity: 0.3; }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- SECTIONS --- */
.section {
    padding: 120px 60px;
    position: relative;
}

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

.section-label {
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.1;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gray);
    z-index: -1;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 25px;
}

.about-text p:first-of-type::first-letter {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 48px;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
    color: var(--white);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--gray);
}

.stat-number {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 36px;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-top: 5px;
}

/* --- DISCOGRAPHY --- */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.album-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.album-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.album-card:hover .album-info {
    transform: translateY(0);
    opacity: 1;
}

.album-title {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.album-year {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--light-gray);
    margin-top: 5px;
}

/* --- GALLERY PREVIEW --- */
.gallery-marquee {
    display: flex;
    gap: 20px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.gallery-marquee img {
    height: 350px;
    width: auto;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter 0.4s ease;
}

.gallery-marquee img:hover {
    filter: grayscale(0%);
}

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

.marquee-container {
    overflow: hidden;
    padding: 40px 0;
}

/* --- GALLERY PAGE --- */
.gallery-grid {
    columns: 3;
    column-gap: 15px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-filter {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filter button {
    background: none;
    border: 1px solid var(--gray);
    color: var(--white);
    padding: 10px 25px;
    font-family: 'Eurostile', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active {
    background: var(--white);
    color: var(--black);
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    color: var(--white);
    background: none;
    border: none;
    font-family: 'Eurostile', sans-serif;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    cursor: pointer;
    color: var(--white);
    background: none;
    border: none;
    padding: 20px;
    transition: opacity 0.3s;
}

.lightbox-nav:hover {
    opacity: 0.6;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- VIDEO PAGE --- */
.video-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.video-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    transition: all 0.4s ease;
}

.video-play i {
    margin-left: 3px;
}

.video-card:hover .video-play {
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    border-color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-info {
    padding: 20px 0;
}

.video-card-title {
    font-family: 'Eurostile', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-card-meta {
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 5px;
    letter-spacing: 1px;
}

/* --- SPOTIFY SECTION --- */
.spotify-section {
    background: var(--darker);
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.spotify-embed {
    border-radius: 12px;
    overflow: hidden;
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--gray);
    color: var(--white);
    font-family: 'Eurostile', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--white);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid-gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 10px;
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--dark);
}

.submit-btn {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 18px 50px;
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:active::after {
    width: 300px;
    height: 300px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.contact-info p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* --- FOOTER --- */
.footer {
    padding: 60px;
    border-top: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    filter: invert(1);
    opacity: 0.5;
}

.footer-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--mid-gray);
}

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

.footer-socials a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid-gray);
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--white);
}

/* --- PAGE HEADER --- */
.page-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.3) grayscale(30%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.page-header .breadcrumb {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 15px;
}

.page-header .breadcrumb a:hover {
    color: var(--white);
}

/* --- HORIZONTAL SCROLL SECTION --- */
.horizontal-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 40px 60px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll .scroll-item {
    min-width: 350px;
    scroll-snap-align: start;
}

/* --- PARALLAX TEXT --- */
.parallax-text {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: clamp(60px, 10vw, 150px);
    letter-spacing: 10px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--gray);
    white-space: nowrap;
    overflow: hidden;
    padding: 40px 0;
    will-change: transform;
}

/* --- CTA BANNER --- */
.cta-banner {
    padding: 100px 60px;
    text-align: center;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: clamp(24px, 4vw, 48px);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid var(--white);
    font-family: 'Eurostile', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* --- FEATURED TRACK --- */
.featured-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.featured-track-visual {
    position: relative;
    overflow: hidden;
}

.featured-track-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-track-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--darker);
}

.featured-track-content .section-label {
    margin-bottom: 20px;
}

.featured-track-content h3 {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 36px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.featured-track-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .section {
        padding: 80px 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .featured-track {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 2;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .section {
        padding: 60px 20px;
    }

    .hero-title {
        letter-spacing: 5px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .gallery-grid {
        columns: 2;
        column-gap: 10px;
    }

    .gallery-item {
        margin-bottom: 10px;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 40px 20px;
    }

    .page-header {
        padding: 40px 20px;
        min-height: 300px;
    }

    .cursor {
        display: none;
    }

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

    .video-card iframe {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .video-banner {
        padding: 80px 20px;
        min-height: 350px;
    }

    .video-banner h3,
    .video-banner .section-title {
        font-size: 28px !important;
        letter-spacing: 3px !important;
    }

    .video-strip {
        height: 200px;
    }

    .video-split {
        grid-template-columns: 1fr;
    }

    .video-split-visual {
        height: 250px;
    }

    .video-split-content {
        padding: 40px 20px;
    }

    .video-split-content h3 {
        font-size: 24px;
    }

    .parallax-text {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .mobile-nav a {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .disco-grid {
        grid-template-columns: 1fr;
    }

    .gallery-marquee img {
        height: 200px;
    }

    .hero-subtitle {
        letter-spacing: 4px;
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .nav {
        padding: 15px 20px;
    }

    .nav.scrolled {
        padding: 10px 20px;
    }

    .cta-btn {
        padding: 14px 30px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .footer-socials {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- TOUR DATES --- */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-item {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 35px 30px;
    border-bottom: 1px solid var(--gray);
    transition: all 0.4s ease;
}

.tour-item:first-child {
    border-top: 1px solid var(--gray);
}

.tour-item:hover {
    background: var(--darker);
    padding-left: 40px;
}

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

.tour-date-day {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 42px;
    line-height: 1;
    color: var(--white);
}

.tour-date-month {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-top: 4px;
}

.tour-date-year {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--mid-gray);
    margin-top: 2px;
}

.tour-info h3 {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tour-info p {
    font-size: 13px;
    color: var(--light-gray);
    letter-spacing: 1px;
}

.tour-info .tour-venue {
    color: var(--mid-gray);
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 4px;
}

.tour-btn {
    padding: 12px 30px;
    border: 1px solid var(--white);
    font-family: 'Eurostile', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    background: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.tour-btn:hover {
    background: var(--white);
    color: var(--black);
}

.tour-btn.sold-out {
    border-color: var(--mid-gray);
    color: var(--mid-gray);
    pointer-events: none;
}

.tour-status {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-left: 12px;
    vertical-align: middle;
}

.tour-status.sold-out {
    color: var(--accent);
    border: 1px solid var(--accent);
}

.tour-status.few-left {
    color: var(--gold);
    border: 1px solid var(--gold);
}

.tour-newsletter {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.tour-newsletter p {
    color: var(--light-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.tour-newsletter-form {
    display: flex;
    gap: 0;
}

.tour-newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: var(--darker);
    border: 1px solid var(--gray);
    border-right: none;
    color: var(--white);
    font-family: 'Eurostile', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s;
}

.tour-newsletter-form input:focus {
    border-color: var(--white);
}

.tour-newsletter-form button {
    padding: 15px 30px;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    font-family: 'Eurostile', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tour-newsletter-form button:hover {
    background: var(--light-gray);
}

@media (max-width: 768px) {
    .tour-item {
        grid-template-columns: 100px 1fr;
        gap: 20px;
        padding: 25px 15px;
    }

    .tour-item .tour-btn {
        grid-column: 1 / -1;
        text-align: center;
    }

    .tour-date-day {
        font-size: 32px;
    }

    .tour-newsletter-form {
        flex-direction: column;
    }

    .tour-newsletter-form input {
        border-right: 1px solid var(--gray);
        border-bottom: none;
    }
}

/* --- VIDEO BACKGROUNDS --- */
.video-bg-section {
    position: relative;
    overflow: hidden;
}

.video-bg-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-bg-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: 1;
}

.video-bg-section > *:not(video):not(.video-overlay) {
    position: relative;
    z-index: 2;
}

.video-banner {
    position: relative;
    overflow: hidden;
    padding: 120px 60px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4) saturate(1.2);
}

.video-banner .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.6) 100%
    );
    z-index: 1;
}

.video-banner > * {
    position: relative;
    z-index: 2;
}

.video-strip {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.video-strip video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: grayscale(40%) brightness(0.5);
}

.video-strip .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.2) 20%,
        rgba(10, 10, 10, 0.2) 80%,
        rgba(10, 10, 10, 1) 100%
    );
    z-index: 1;
}

.video-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.video-split-visual {
    position: relative;
    overflow: hidden;
}

.video-split-visual video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.1);
}

.video-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--darker);
}

.video-split-content .section-label {
    margin-bottom: 20px;
}

.video-split-content h3 {
    font-family: 'Eurostile Extended', sans-serif;
    font-size: 36px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.video-split-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .video-split {
        grid-template-columns: 1fr;
    }

    .video-split-visual {
        height: 300px;
    }

    .video-split-content {
        padding: 40px 20px;
    }

    .video-banner {
        padding: 80px 20px;
        min-height: 300px;
    }

    .video-strip {
        height: 200px;
    }
}

/* --- FORM SUCCESS MESSAGE --- */
.form-success {
    display: none;
    padding: 20px;
    border: 1px solid var(--white);
    text-align: center;
    font-family: 'Eurostile', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.form-success.active {
    display: block;
    animation: fadeUp 0.5s ease forwards;
}

/* --- GLITCH EFFECT --- */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    -webkit-text-stroke: inherit;
    color: inherit;
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    -webkit-text-stroke: inherit;
    color: inherit;
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
    100% { transform: translate(0); }
}

/* --- NOISE OVERLAY --- */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}
