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

:root {
    --primary: #00ff41;
    --primary-dim: #00cc33;
    --primary-dark: #003311;
    --secondary: #ff6600;
    --dark: #050505;
    --dark-light: #0a140a;
    --dark-panel: #0d1f0d;
    --text: #e0ffe0;
    --text-gray: #4a8a4a;
    --glow: 0 0 10px rgba(0, 255, 65, 0.5), 0 0 20px rgba(0, 255, 65, 0.2);
    --glow-strong: 0 0 15px rgba(0, 255, 65, 0.8), 0 0 30px rgba(0, 255, 65, 0.4), 0 0 60px rgba(0, 255, 65, 0.1);
    --glow-orange: 0 0 10px rgba(255, 102, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.2);
    --border: 1px solid rgba(0, 255, 65, 0.2);
    --border-bright: 1px solid rgba(0, 255, 65, 0.6);
}

body {
    font-family: 'Rajdhani', 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 0;
    box-shadow: var(--glow);
}

/* ===== MATRIX CANVAS ===== */
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.13;
}

/* ===== SCANLINES ===== */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.04) 2px,
        rgba(0, 0, 0, 0.04) 4px
    );
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 60px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.25);
    box-shadow: 0 2px 40px rgba(0, 255, 65, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

.logotipo {
    display: inline;
    width: 44px;
    margin-right: 10px;
    vertical-align: middle;
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.7));
}

.logo {
    font-family: 'Metal Mania', cursive;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
}

.color {
    color: var(--primary);
    text-shadow: var(--glow-strong);
}

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

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    box-shadow: var(--glow);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
    text-shadow: var(--glow);
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(0, 255, 65, 0.35);
    color: var(--primary);
    padding: 7px 18px;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.lang-btn:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(0, 255, 65, 0.6);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.18) saturate(0.4) hue-rotate(80deg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.3) 0%,
        rgba(5, 5, 5, 0.15) 40%,
        rgba(5, 5, 5, 0.65) 75%,
        rgba(5, 5, 5, 1) 100%
    );
}

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

/* ===== GLITCH EFFECT ===== */
.glitch {
    position: relative;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5), 0 0 40px rgba(0, 255, 65, 0.2);
}

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

.glitch::before {
    color: var(--primary);
    animation: glitch-before 5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    transform: translate(-3px, -3px);
    opacity: 0;
}

.glitch::after {
    color: var(--secondary);
    animation: glitch-after 5s infinite;
    clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
    transform: translate(3px, 3px);
    opacity: 0;
}

@keyframes glitch-before {
    0%, 88%, 100% { opacity: 0; transform: translate(-3px, -3px); }
    89% { opacity: 0.9; transform: translate(-8px, 0); }
    91% { opacity: 0.9; transform: translate(8px, 0); }
    93% { opacity: 0.9; transform: translate(-3px, -3px); }
    95% { opacity: 0; }
}

@keyframes glitch-after {
    0%, 83%, 100% { opacity: 0; transform: translate(3px, 3px); }
    84% { opacity: 0.9; transform: translate(8px, 0); }
    86% { opacity: 0.9; transform: translate(-8px, 0); }
    88% { opacity: 0.9; transform: translate(3px, 3px); }
    90% { opacity: 0; }
}

.hero h1 {
    font-family: 'Metal Mania', cursive;
    font-size: 88px;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    text-transform: uppercase;
    line-height: 1.05;
}

.hero p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero p::before {
    content: '// ';
    color: var(--primary);
    opacity: 0.8;
}

/* ===== ERROR BADGES ===== */
.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 45px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.55s forwards;
}

.error-badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 8px 18px;
    border: 1px solid rgba(0, 255, 65, 0.45);
    color: var(--primary);
    background: rgba(0, 255, 65, 0.05);
    text-transform: uppercase;
    animation: badge-blink 3.5s infinite;
}

.error-badge::before {
    content: '⚠ ';
}

.error-badge.error-404 {
    border-color: rgba(255, 102, 0, 0.55);
    color: var(--secondary);
    background: rgba(255, 102, 0, 0.05);
    animation: badge-blink-orange 2.8s infinite;
}

.error-badge.error-404::before {
    content: '✖ ';
}

@keyframes badge-blink {
    0%, 90%, 100% { opacity: 1; border-color: rgba(0, 255, 65, 0.45); }
    95% { opacity: 0.3; border-color: rgba(0, 255, 65, 0.1); }
}

@keyframes badge-blink-orange {
    0%, 85%, 100% { opacity: 1; border-color: rgba(255, 102, 0, 0.55); }
    90% { opacity: 0.2; border-color: rgba(255, 102, 0, 0.1); }
}

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

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 1px solid rgba(0, 255, 65, 0.4);
    border-radius: 0;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    animation: float 2.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.15);
}

.scroll-indicator::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 0;
    animation: scroll-dot 2.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(0, 255, 65, 0.8);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scroll-dot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(18px); }
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    z-index: 2;
    padding: 120px 60px;
    max-width: 1800px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 25px;
    text-shadow: var(--glow);
}

.section-title::before {
    content: '> ';
    opacity: 0.7;
}

.section-heading {
    font-family: 'Metal Mania', cursive;
    font-size: 68px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 60px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

/* ===== MUSIC SECTION ===== */
.music-section {
    background: var(--dark-light);
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.music-section > .section-title,
.music-section > .player-container,
.music-section > .tracks-grid {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.player-container {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.03), rgba(0, 20, 10, 0.8));
    border: 1px solid rgba(0, 255, 65, 0.15);
    border-radius: 0;
    padding: 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: var(--glow);
}

.now-playing {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.25), 0 0 80px rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    filter: saturate(0.8) brightness(0.9);
}

.track-details h3 {
    font-family: 'Metal Mania', cursive;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.track-details p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.control-button {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.25);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.control-button:hover {
    background: rgba(0, 255, 65, 0.15);
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: scale(1.05);
}

.control-button.play-btn {
    width: 68px;
    height: 68px;
    background: rgba(0, 255, 65, 0.12);
    border-color: var(--primary);
    box-shadow: var(--glow);
    font-size: 24px;
}

.control-button.play-btn:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--glow-strong);
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-icon {
    flex-shrink: 0;
    opacity: 0.5;
    color: var(--primary);
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 3px;
    background: rgba(0, 255, 65, 0.15);
    border-radius: 0;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 255, 65, 0.8);
    transition: transform 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 6px rgba(0, 255, 65, 0.8);
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    border-radius: 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 1px;
}

/* ===== TRACKS LIST ===== */
.tracks-grid {
    display: grid;
    gap: 1px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.track-item {
    background: var(--dark);
    padding: 22px 30px;
    display: grid;
    grid-template-columns: 55px 75px 1fr auto auto;
    gap: 25px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
    position: relative;
}

.track-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 255, 65, 0.05);
}

.track-item:hover {
    background: rgba(0, 255, 65, 0.04);
    border-left-color: rgba(0, 255, 65, 0.4);
}

.track-item.playing {
    background: rgba(0, 255, 65, 0.07);
    border-left-color: var(--primary);
    box-shadow: inset 0 0 30px rgba(0, 255, 65, 0.03);
}

.track-number {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.track-item:hover .track-number,
.track-item.playing .track-number {
    color: var(--primary);
    text-shadow: var(--glow);
}

.track-cover {
    width: 75px;
    height: 75px;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid rgba(0, 255, 65, 0.15);
    filter: saturate(0.6) brightness(0.85);
    transition: all 0.3s ease;
}

.track-item:hover .track-cover,
.track-item.playing .track-cover {
    filter: saturate(0.9) brightness(1);
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.track-name h4 {
    font-family: 'Rajdhani', 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 1px;
    color: var(--text);
    transition: color 0.3s ease;
}

.track-item:hover .track-name h4,
.track-item.playing .track-name h4 {
    color: var(--primary);
}

.track-name p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.track-duration {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 1px;
}

.btn-download {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(0, 255, 65, 0.25);
    color: var(--text-gray);
    border-radius: 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.btn-download:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow);
}

/* ===== VIDEOS GRID ===== */
#videos {
    position: relative;
    z-index: 2;
}

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

.video-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16/9;
    border: 1px solid rgba(0, 255, 65, 0.1);
    transition: all 0.4s ease;
}

.video-card:hover {
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.15), 0 0 40px rgba(0, 255, 65, 0.05);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.4) brightness(0.7) hue-rotate(80deg);
}

.video-card:hover img {
    transform: scale(1.05);
    filter: saturate(0.6) brightness(0.8) hue-rotate(80deg);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 1px;
    color: var(--primary);
    text-shadow: var(--glow);
}

.video-overlay p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: var(--glow);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.video-card:hover .play-button {
    opacity: 1;
}

/* ===== GALLERY ===== */
#gallery {
    position: relative;
    z-index: 2;
    background: var(--dark-light);
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    border-top: 1px solid rgba(0, 255, 65, 0.08);
    border-bottom: 1px solid rgba(0, 255, 65, 0.08);
}

#gallery > * {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid rgba(0, 255, 65, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.3) brightness(0.7) hue-rotate(80deg);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(0.7) brightness(0.85) hue-rotate(80deg);
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.gallery-lightbox.is-open {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    overflow: auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    border: 1px solid rgba(0, 255, 65, 0.35);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.25);
    filter: none !important;
}

.lightbox-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 255, 65, 0.4);
    background: rgba(0, 255, 65, 0.08);
    color: var(--primary);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 3003;
}

.lightbox-close:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

/* ===== SHOWS ===== */
#shows {
    position: relative;
    z-index: 2;
}

.shows-list {
    display: grid;
    gap: 2px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.show-card {
    background: var(--dark);
    padding: 38px 40px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 40px;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.show-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 255, 65, 0.05);
}

.show-card:hover {
    background: rgba(0, 255, 65, 0.04);
    border-left-color: var(--primary);
}

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

.show-date .day {
    font-family: 'Metal Mania', cursive;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--primary);
    text-shadow: var(--glow);
}

.show-date .month-year {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.show-info h4 {
    font-family: 'Rajdhani', 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.3s ease;
}

.show-card:hover .show-info h4 {
    color: var(--primary);
}

.show-info p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.show-platform {
    padding: 10px 26px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.4);
    color: var(--secondary);
    border-radius: 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--glow-orange);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

/* ===== ABOUT SECTION ===== */
#about {
    position: relative;
    z-index: 2;
    background: var(--dark-light);
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    border-top: 1px solid rgba(0, 255, 65, 0.08);
}

#about > * {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-image-container {
    position: relative;
}

.about-image-container::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    pointer-events: none;
    z-index: 1;
}

.about-image-container::after {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(0, 255, 65, 0.08);
    pointer-events: none;
    z-index: 1;
}

.about-image {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: saturate(0.5) brightness(0.8) hue-rotate(80deg);
    border: 1px solid rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.1);
}

.about-content h3 {
    font-family: 'Metal Mania', cursive;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.about-content p {
    font-family: 'Rajdhani', 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.social-buttons {
    display: flex;
    gap: 14px;
    margin-top: 40px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.social-btn:hover {
    background: rgba(0, 255, 65, 0.12);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

/* ===== FOOTER ===== */
footer {
    position: relative;
    z-index: 2;
    padding: 50px 60px;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 65, 0.15);
    background: var(--dark);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--primary);
    box-shadow: var(--glow);
}

footer p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer p::before {
    content: '// ';
    color: var(--primary);
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 68px;
    }

    .section-heading {
        font-size: 52px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    header {
        padding: 18px 30px;
    }

    header.scrolled {
        padding: 14px 30px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        padding: 60px 0;
        transition: left 0.4s ease;
        border-top: 1px solid rgba(0, 255, 65, 0.2);
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 80px 30px;
    }

    .music-section,
    #gallery,
    #about {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero h1 {
        font-size: 52px;
        letter-spacing: 3px;
    }

    .section-heading {
        font-size: 40px;
    }

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

    .player-container {
        padding: 30px;
    }

    .track-item {
        grid-template-columns: 40px 1fr auto;
        gap: 15px;
        padding: 18px 20px;
    }

    .track-cover,
    .track-duration {
        display: none;
    }

    .videos-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .show-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 30px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .track-details h3 {
        font-size: 30px;
    }

    .section-heading {
        font-size: 32px;
    }

    .show-date .day {
        font-size: 40px;
    }
}
