/* =============================================
   LIMP INSTINCT - Nu-Metal Tribute Band
   Style: Dark, aggressive, grungy
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;700&family=Russo+One&display=swap');

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

:root {
    --red: #d32f2f;
    --dark-red: #8b0000;
    --orange: #ff6600;
    --yellow: #ffc107;
    --dark: #0a0a0a;
    --darker: #050505;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --text: #e0e0e0;
    --text-muted: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--red);
    color: #fff;
}

/* ---- NOISE OVERLAY ---- */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    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)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ---- NAVIGATION ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--red);
    transition: all 0.3s ease;
    padding: 0 2rem;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 30px rgba(211, 47, 47, 0.3);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    font-family: 'Russo One', sans-serif;
    font-size: 1.6rem;
    color: var(--red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: text-shadow 0.3s;
}

.nav-logo:hover {
    text-shadow: 0 0 20px rgba(211, 47, 47, 0.6);
}

.nav-logo span {
    color: var(--text);
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

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

/* ---- NAV PLAYER ---- */
.nav-player {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.player-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.player-btn:hover {
    background: rgba(211, 47, 47, 0.2);
    border-color: var(--red);
    color: var(--red);
    transform: scale(1.1);
}

.player-btn.playing {
    background: rgba(211, 47, 47, 0.15);
    border-color: var(--red);
    color: var(--red);
    animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.3); }
    50% { box-shadow: 0 0 12px 2px rgba(211, 47, 47, 0.2); }
}

.player-video-btn {
    font-size: 0.85rem;
}

.player-video-btn.active {
    background: rgba(211, 47, 47, 0.15);
    border-color: var(--red);
    color: var(--red);
}

/* Equalizer bars */
.player-eq {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.eq-bar {
    width: 3px;
    background: var(--red);
    border-radius: 1px;
    animation: eq-bounce 0.8s ease-in-out infinite;
}

.eq-bar:nth-child(1) {
    height: 6px;
    animation-delay: 0s;
}

.eq-bar:nth-child(2) {
    height: 12px;
    animation-delay: 0.15s;
}

.eq-bar:nth-child(3) {
    height: 8px;
    animation-delay: 0.3s;
}

@keyframes eq-bounce {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--red);
    transition: all 0.3s;
    display: block;
}

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

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

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

/* ---- HERO SECTION ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(211, 47, 47, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.1) 2px,
            rgba(0,0,0,0.1) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Flame particles container */
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    bottom: -10px;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    animation: rise linear infinite;
    opacity: 0;
}

@keyframes rise {
    0% { 
        opacity: 0; 
        transform: translateY(0) scale(1); 
    }
    10% { 
        opacity: 0.8; 
    }
    90% { 
        opacity: 0.2; 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-100vh) scale(0); 
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    border: 1px solid var(--red);
    color: var(--red);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
    text-shadow: 
        0 0 40px rgba(211, 47, 47, 0.5),
        0 0 80px rgba(211, 47, 47, 0.2);
    animation: fadeInUp 1s ease 0.5s both;
    margin-bottom: 0.5rem;
}

.hero-title .highlight {
    color: var(--red);
    display: block;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-muted);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    background: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text-muted);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    transform: rotate(45deg);
    opacity: 0.6;
}

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

/* ---- SECTIONS GENERAL ---- */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    color: #fff;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 1rem auto 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- ABOUT SECTION ---- */
.about {
    background: 
        linear-gradient(135deg, var(--darker) 0%, var(--gray) 50%, var(--darker) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--red);
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(211, 47, 47, 0.05);
    border: 1px solid rgba(211, 47, 47, 0.2);
    padding: 1.5rem;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--red);
    background: rgba(211, 47, 47, 0.1);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--red);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.3rem;
}

/* ---- ABOUT VISUAL ---- */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-frame {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    background: 
        radial-gradient(circle at 50% 50%, rgba(211, 47, 47, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, var(--gray-light) 0%, var(--gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-frame .about-icon {
    font-size: 8rem;
    opacity: 0.6;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(211, 47, 47, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(211, 47, 47, 0.6), 0 0 80px rgba(211, 47, 47, 0.2);
        transform: scale(1.05);
    }
}

/* ---- BAND MEMBERS ---- */
.members {
    background: var(--darker);
}

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

.member-card {
    position: relative;
    overflow: hidden;
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    cursor: default;
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(211, 47, 47, 0.15);
}

.member-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.member-image .member-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 50% 40%, rgba(211, 47, 47, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, var(--gray-light) 0%, var(--gray) 100%);
    font-size: 5rem;
    transition: all 0.4s;
}

.member-card:hover .member-icon {
    transform: scale(1.05);
    background: 
        radial-gradient(circle at 50% 40%, rgba(211, 47, 47, 0.25) 0%, transparent 70%),
        linear-gradient(180deg, var(--gray-light) 0%, var(--gray) 100%);
}

.member-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, var(--gray));
    pointer-events: none;
}

.member-info {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    margin-top: -2rem;
}

.member-role {
    color: var(--red);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
}

.member-name {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
}

.member-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ---- SETLIST SECTION ---- */
.setlist {
    background: 
        linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.setlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.setlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--red);
    transition: all 0.3s;
}

.setlist-item:hover {
    background: rgba(211, 47, 47, 0.08);
    transform: translateX(5px);
}

.setlist-number {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: rgba(211, 47, 47, 0.4);
    min-width: 40px;
}

.setlist-song-info {
    flex: 1;
}

.setlist-song {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.setlist-album {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ---- VIDEOS SECTION ---- */
.videos {
    background: var(--darker);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.video-card:hover {
    border-color: var(--red);
    transform: scale(1.02);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%),
        var(--gray);
    color: var(--text-muted);
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    color: var(--red);
}

.video-placeholder i {
    font-size: 3rem;
}

.video-placeholder span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ---- SHOWS / BOOKING ---- */
.shows {
    background: 
        linear-gradient(135deg, var(--darker) 0%, var(--gray) 50%, var(--darker) 100%);
}

.shows-list {
    max-width: 800px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.show-item:hover {
    border-color: var(--red);
    background: rgba(211, 47, 47, 0.05);
}

.show-date {
    text-align: center;
    min-width: 70px;
    padding: 0.8rem;
    background: var(--red);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.show-date .day {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1;
}

.show-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
}

.show-info {
    flex: 1;
}

.show-venue {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.show-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.show-status {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.show-status.confirmed {
    border: 1px solid var(--red);
    color: var(--red);
}

.show-status.soon {
    border: 1px solid var(--yellow);
    color: var(--yellow);
}

.no-shows-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.no-shows-message i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1rem;
    display: block;
}

/* ---- CONTACT / BOOKING ---- */
.contact {
    background: var(--darker);
}

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

.contact-info h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--red);
    width: 40px;
    text-align: center;
}

.contact-item span {
    font-size: 1rem;
    color: var(--text);
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

/* ---- CONTACT FORM ---- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--red);
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid var(--red);
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.form-success h4 {
    font-family: 'Russo One', sans-serif;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    border-top: 2px solid var(--red);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

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

/* ---- FLOATING VIDEO PLAYER ---- */
.floating-video {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 360px;
    z-index: 9998;
    background: var(--dark);
    border: 1px solid rgba(211, 47, 47, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px rgba(211, 47, 47, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.floating-video.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(211, 47, 47, 0.08);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.floating-video-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.floating-video-controls {
    display: flex;
    gap: 0.25rem;
}

.fv-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.fv-btn:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(211, 47, 47, 0.1);
}

.floating-video-body {
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.floating-video-body iframe,
.floating-video-body #ytPlayer {
    width: 100%;
    height: 100%;
}

/* ---- DIVIDER ---- */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.3;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0; right: 0;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-bottom: 2px solid var(--red);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        gap: 1rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .section {
        padding: 4rem 1.5rem;
    }
}

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .floating-video {
        width: calc(100% - 1.5rem);
        right: 0.75rem;
        bottom: 0.75rem;
    }
}
