/* ============================================
   LUTHER / MUSIXBARN - Premium Dark Theme
   Black to Red gradient, glassmorphism, animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; letter-spacing: -0.02em; }

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ SCROLL ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; border-radius: 8px; font-weight: 600;
    font-size: 0.95rem; border: none; cursor: pointer;
    transition: all 0.3s ease; text-decoration: none;
    font-family: 'Poppins', sans-serif; letter-spacing: 0.3px;
    position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: linear-gradient(135deg, var(--btn-bg), var(--btn-hover));
    color: var(--btn-text); box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(204,0,0,0.5); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: var(--btn-text); box-shadow: 0 4px 20px rgba(204,0,0,0.4); }

/* ============ NAVIGATION ============ */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.4s ease;
}
.main-nav.scrolled { background: rgba(0,0,0,0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; height: 65px; gap: 40px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-primary); font-weight: 700; font-size: 1.1rem;
    font-family: 'Poppins', sans-serif; flex-shrink: 0; margin-right: auto;
    white-space: nowrap;
}
.nav-logo img { height: 40px; width: auto; filter: drop-shadow(0 0 8px rgba(204,0,0,0.3)); }
.nav-logo span { letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }
.nav-toggle {
    display: flex; background: none; border: none; color: var(--text-primary);
    font-size: 1.5rem; cursor: pointer; padding: 5px; transition: transform 0.3s;
}
.nav-toggle:hover { transform: scale(1.1); }
.nav-menu {
    display: none; position: fixed; top: 65px; left: 0; right: 0;
    background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
    list-style: none; padding: 10px 0; max-height: calc(100vh - 65px); overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-menu.active { display: block; }
.nav-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 24px; color: var(--nav-text); font-size: 1rem;
    transition: all 0.3s; font-family: 'Poppins', sans-serif; font-weight: 500;
    border-left: 3px solid transparent; white-space: nowrap;
}
.nav-menu li a:hover { background: rgba(204,0,0,0.08); color: var(--accent); border-left-color: var(--accent); }
.nav-menu li a i { width: 20px; text-align: center; font-size: 0.9rem; color: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; list-style: none; background: rgba(15,15,15,0.98); backdrop-filter: blur(15px); padding: 5px 0; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a { padding: 12px 24px 12px 48px; font-size: 0.9rem; }
.nav-menu li a .fa-chevron-down { font-size: 0.7rem; margin-left: 4px; transition: transform 0.3s; }
.nav-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

/* ============ HERO ============ */
.hero {
    position: relative; min-height: 100vh; display: flex;
    align-items: flex-end; justify-content: center; text-align: center;
    padding: 120px 20px 100px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center 20%; z-index: 0;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 150px;
    background: linear-gradient(transparent, var(--bg-primary)); z-index: 2; pointer-events: none;
}
.hero-content {
    position: relative; z-index: 3; max-width: 750px;
    animation: heroFadeIn 1.2s ease-out;
}
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-logo {
    max-height: 120px; width: auto; margin-bottom: 15px;
    filter: drop-shadow(0 0 50px rgba(139,0,0,0.7)) drop-shadow(0 0 100px rgba(100,0,0,0.4));
    animation: logoGlow 3s ease-in-out infinite alternate;
}
@keyframes logoGlow {
    from { filter: drop-shadow(0 0 40px rgba(139,0,0,0.6)) drop-shadow(0 0 80px rgba(100,0,0,0.3)); }
    to { filter: drop-shadow(0 0 70px rgba(139,0,0,0.9)) drop-shadow(0 0 130px rgba(100,0,0,0.5)); }
}

.hero h1 {
    font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; letter-spacing: 1px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.7);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 35px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5); font-weight: 300; letter-spacing: 0.5px;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }


/* Mobile hero fix */
@media (max-width: 768px) {
    .hero { min-height: 100vh; min-height: 100dvh; padding: 100px 20px 60px; }
    .hero-bg { background-size: cover; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; margin-bottom: 25px; }
    .hero-logo { max-height: 220px; }
    .hero::after { height: 100px; }
}
@media (max-width: 480px) {
    .hero { min-height: 100vh; min-height: 100dvh; padding: 90px 15px 50px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-logo { max-height: 180px; }
}

/* ============ SECTIONS ============ */
.section { padding: 80px 0; position: relative; }
.section:nth-child(even) { background: var(--bg-secondary); }
.section::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
    font-size: 2.2rem; font-weight: 700; margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; font-weight: 300; }
.empty-state {
    text-align: center; color: var(--text-muted); padding: 50px 20px; font-size: 1rem;
    background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px dashed rgba(255,255,255,0.08);
}
.empty-state i { font-size: 2.5rem; margin-bottom: 15px; display: block; opacity: 0.5; }

/* ============ ABOUT ============ */
.about-grid { display: grid; gap: 40px; }
.about-text { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.9; font-weight: 300; }
.about-image img {
    border-radius: 16px; width: 100%; box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s ease;
}
.about-image img:hover { transform: scale(1.02); border: 1px solid rgb(204,0,0); box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(204,0,0,0.2); }

/* ============ BAND MEMBERS ============ */
.members-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
.member-card {
    background: rgba(255,255,255,0.03); border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.member-card:hover {
    transform: translateY(-8px); border-color: rgba(204,0,0,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 30px rgba(204,0,0,0.1);
}
.member-photo { position: relative; aspect-ratio: 1; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.member-card:hover .member-photo img { transform: scale(1.08); }
.member-photo::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.6)); pointer-events: none;
}
.member-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.03); font-size: 3rem; color: var(--text-muted);
}
.member-info { padding: 20px; }
.member-info h3 { font-size: 1.2rem; margin-bottom: 4px; font-weight: 600; }
.member-role { color: var(--accent); font-size: 0.85rem; font-weight: 600; display: inline-block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.member-instrument { color: var(--text-muted); font-size: 0.85rem; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.member-bio { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; font-weight: 300; }
.member-socials { display: flex; gap: 12px; }
.member-socials a {
    color: var(--text-muted); font-size: 1rem; transition: all 0.3s;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.05);
}
.member-socials a:hover { color: var(--accent); background: rgba(204,0,0,0.15); transform: translateY(-2px); }

/* ============ MUSIC ============ */
.music-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 35px; }
.tab-btn {
    padding: 10px 28px; border: 2px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03); color: var(--text-secondary); border-radius: 30px;
    cursor: pointer; font-size: 0.95rem; transition: all 0.3s;
    display: flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif; font-weight: 500;
}
.tab-btn.active, .tab-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(204,0,0,0.1); box-shadow: 0 0 20px rgba(204,0,0,0.15); }
.tab-content { display: none; }
.tab-content.active { display: grid; }
.music-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
.albums-grid { grid-template-columns: repeat(2, 1fr); }

.song-card, .album-card {
    background: rgba(255,255,255,0.03); border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s ease;
}
.song-card:hover, .album-card:hover {
    transform: translateY(-5px); border-color: rgba(204,0,0,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(204,0,0,0.1);
}
.song-cover, .album-cover { position: relative; aspect-ratio: 1; overflow: hidden; }
.song-cover img, .album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.song-card:hover img, .album-card:hover img { transform: scale(1.08); }
.cover-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.02); font-size: 2.5rem; color: var(--text-muted);
}
.song-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s; backdrop-filter: blur(2px);
}
.song-card:hover .song-overlay, .album-card:hover .song-overlay { opacity: 1; }
.play-btn {
    width: 55px; height: 55px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white; border: none; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(204,0,0,0.5);
}
.play-btn:hover { transform: scale(1.15); }
.track-count {
    position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px); color: white; font-size: 0.75rem; padding: 4px 10px;
    border-radius: 20px; font-weight: 500;
}
.song-info { padding: 12px 12px 6px; }
.song-info h5 { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; font-weight: 600; }
.song-info p { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-actions { display: flex; gap: 4px; padding: 6px 12px 12px; }
.action-btn {
    flex: 1; padding: 7px; background: rgba(255,255,255,0.04); border: none;
    color: var(--text-secondary); border-radius: 8px; cursor: pointer;
    font-size: 0.8rem; transition: all 0.3s; font-weight: 500;
}
.action-btn:hover { background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: white; box-shadow: 0 2px 10px rgba(204,0,0,0.3); }

/* ============ EVENTS ============ */
.events-list { display: flex; flex-direction: column; gap: 15px; }
.event-card {
    display: flex; align-items: center; gap: 15px;
    background: rgba(255,255,255,0.03); border-radius: 14px; padding: 18px;
    border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s ease;
}
.event-card:hover { border-color: rgba(204,0,0,0.3); box-shadow: 0 8px 30px rgba(0,0,0,0.3); transform: translateX(5px); }
.event-date-badge {
    display: flex; flex-direction: column; align-items: center;
    min-width: 65px; padding: 12px; border-radius: 12px; color: white; text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}
.event-month { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.event-day { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.event-year { font-size: 0.65rem; opacity: 0.8; }
.event-details { flex: 1; min-width: 0; }
.event-details h3 { font-size: 1.05rem; margin-bottom: 4px; font-weight: 600; }
.event-venue, .event-time { font-size: 0.85rem; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.event-venue i, .event-time i { color: var(--accent); font-size: 0.8rem; }
.event-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; font-weight: 300; }
.event-action { text-align: center; }
.event-action .btn { font-size: 0.85rem; padding: 8px 18px; white-space: nowrap; }
.tickets-left { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }
.sold-out { color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.free-event { color: var(--text-secondary); font-size: 0.85rem; }

/* ============ LIVESTREAM ============ */
.livestream-promo {
    display: grid; gap: 0; background: rgba(255,255,255,0.03); border-radius: 16px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.livestream-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.livestream-info { padding: 30px; }
.livestream-info h3 { font-size: 1.4rem; margin-bottom: 12px; font-weight: 700; }
.livestream-info p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.8; font-weight: 300; }
.livestream-features { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 25px; }
.livestream-features span {
    display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.9rem;
    background: rgba(255,255,255,0.04); padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06);
}
.livestream-features i { color: var(--accent); }
.btn-live { animation: pulse-live 2s infinite; }
@keyframes pulse-live { 0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,0.4); } 50% { box-shadow: 0 0 0 12px rgba(204,0,0,0); } }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery-item {
    position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px;
    cursor: pointer; border: 1px solid rgba(255,255,255,0.06);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white; padding: 25px 12px 12px; font-size: 0.85rem; opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ============ VIDEOS ============ */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.video-card {
    background: rgba(255,255,255,0.03); border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06); transition: all 0.4s ease;
}
.video-card:hover { border-color: rgba(204,0,0,0.3); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.video-embed { position: relative; aspect-ratio: 16/9; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 15px; }
.video-info h4 { font-size: 1rem; margin-bottom: 5px; font-weight: 600; }
.video-info p { font-size: 0.85rem; color: var(--text-secondary); font-weight: 300; }

/* ============ SUBSCRIBE ============ */
.subscribe-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    position: relative; overflow: hidden;
}
.subscribe-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(204,0,0,0.15) 0%, transparent 50%);
    animation: subscribeGlow 8s ease-in-out infinite alternate;
}
@keyframes subscribeGlow { from { transform: translate(0, 0); } to { transform: translate(5%, 3%); } }
.subscribe-fields {
    display: flex; flex-direction: column; gap: 12px; max-width: 500px; margin: 0 auto;
    position: relative; z-index: 1;
}
.subscribe-fields input {
    padding: 15px 20px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    color: var(--text-primary); font-size: 1rem; font-family: 'Inter', sans-serif; transition: all 0.3s;
}
.subscribe-fields input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-fields input:focus { outline: none; border-color: rgba(255,255,255,0.4); box-shadow: 0 0 20px rgba(204,0,0,0.2); background: rgba(255,255,255,0.12); }
#subscribeMsg { text-align: center; margin-top: 15px; position: relative; z-index: 1; }

/* ============ FOOTER ============ */
.site-footer {
    background: var(--footer-bg); padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.06); position: relative;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-grid { display: grid; gap: 30px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.footer-logo { height: 40px; filter: drop-shadow(0 0 8px rgba(204,0,0,0.2)); }
.footer-name { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); font-family: 'Poppins', sans-serif; letter-spacing: 1px; }
.footer-links h4, .footer-social h4 { color: var(--text-primary); margin-bottom: 15px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.footer-links a { display: block; color: var(--footer-text); padding: 5px 0; font-size: 0.9rem; transition: all 0.3s; font-weight: 300; }
.footer-links a:hover { color: var(--accent); transform: translateX(5px); }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
    color: var(--footer-text); font-size: 1.1rem; transition: all 0.3s;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
}
.social-icons a:hover { color: white; background: var(--accent); border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 4px 15px rgba(204,0,0,0.4); }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: var(--footer-text); font-size: 0.85rem; font-weight: 300; }
.footer-credit { font-size: 0.8rem; color: var(--text-muted); margin-top: 5px; }

/* ============ PLAYER BAR ============ */
.player-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: linear-gradient(180deg, rgba(15,15,15,0.95), rgba(5,5,5,0.98));
    backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
}
.player-progress-wrap { height: 3px; background: rgba(255,255,255,0.08); cursor: pointer; transition: height 0.2s; }
.player-progress-wrap:hover { height: 5px; }
.player-progress {
    height: 100%; width: 0; transition: width 0.1s linear;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 0 2px 2px 0; box-shadow: 0 0 8px rgba(204,0,0,0.5);
}
.player-inner { display: flex; align-items: center; padding: 8px 15px; gap: 12px; }
.player-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.player-cover { width: 45px; height: 45px; border-radius: 8px; object-fit: cover; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.player-song-info { min-width: 0; }
.player-title { display: block; font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-artist { display: block; font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 300; }
.player-center { display: flex; align-items: center; gap: 12px; }
.player-btn {
    background: none; border: none; color: var(--text-secondary); font-size: 1rem;
    cursor: pointer; padding: 5px; transition: all 0.3s; border-radius: 50%;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}
.player-btn:hover { color: var(--accent); background: rgba(204,0,0,0.1); }
.player-play-btn { font-size: 1.3rem; color: var(--text-primary); width: 42px; height: 42px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.player-play-btn:hover { background: rgba(204,0,0,0.2); }
.player-right { display: flex; align-items: center; gap: 8px; }
.player-time { font-size: 0.75rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.player-time-sep { font-size: 0.7rem; color: var(--text-muted); }
.volume-slider {
    width: 70px; display: none; -webkit-appearance: none; appearance: none;
    height: 3px; background: rgba(255,255,255,0.15); border-radius: 3px; outline: none;
}
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); cursor: pointer; box-shadow: 0 0 6px rgba(204,0,0,0.5); }
#queueBtn { display: none; }

/* ============ QUEUE PANEL ============ */
.queue-panel {
    position: fixed; bottom: 75px; right: 15px; z-index: 998;
    background: rgba(20,20,20,0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
    width: 340px; max-height: 420px; overflow-y: auto; box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
}
.queue-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky; top: 0; background: rgba(20,20,20,0.95); backdrop-filter: blur(20px);
}
.queue-header h3 { font-size: 1rem; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.queue-header button { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; }
.queue-item {
    display: flex; align-items: center; gap: 10px; padding: 10px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.03); cursor: pointer; transition: all 0.3s;
}
.queue-item:hover { background: rgba(255,255,255,0.04); }
.queue-item.active { background: rgba(204,0,0,0.1); border-left: 3px solid var(--accent); }
.queue-item img { width: 38px; height: 38px; border-radius: 6px; object-fit: cover; }
.queue-item-info { flex: 1; min-width: 0; }
.queue-item-title { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
.queue-item-artist { font-size: 0.75rem; color: var(--text-muted); font-weight: 300; }
.queue-item-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; transition: color 0.3s; }
.queue-item-remove:hover { color: var(--accent); }

/* ============ MODALS ============ */
.modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(5px);
    z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-content {
    background: rgba(25,25,25,0.98); border-radius: 16px; width: 100%;
    max-width: 550px; max-height: 80vh; overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: modalIn 0.3s ease-out;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-sm { max-width: 400px; }
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 22px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal-header h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.modal-header button {
    background: rgba(255,255,255,0.05); border: none; color: var(--text-muted);
    cursor: pointer; font-size: 1.1rem; width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.modal-header button:hover { background: rgba(255,255,255,0.1); color: white; }
.modal-body { padding: 22px; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97); z-index: 1200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px; cursor: pointer; animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-close {
    position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1);
    border: none; color: white; font-size: 1.3rem; cursor: pointer; z-index: 1;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 10px 50px rgba(0,0,0,0.5); }
.lightbox-caption { position: absolute; bottom: 30px; text-align: center; width: 100%; color: var(--text-secondary); font-size: 0.95rem; font-weight: 300; }

/* ============ UTILITY ============ */
::selection { background: rgba(204,0,0,0.3); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ============ TABLET (min 600px) ============ */
@media (min-width: 600px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-sub { font-size: 1.2rem; }
    .hero-logo { max-height: 320px; }
    .members-grid { grid-template-columns: repeat(2, 1fr); }
    .music-grid { grid-template-columns: repeat(3, 1fr); }
    .albums-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
    .livestream-promo { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .subscribe-fields { flex-direction: row; flex-wrap: wrap; max-width: 700px; }
    .subscribe-fields input { flex: 1; min-width: 180px; }
    .subscribe-fields .btn { white-space: nowrap; }
}

/* ============ DESKTOP (min 1024px) ============ */
@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .nav-menu {
        display: flex !important; position: static; background: none;
        padding: 0; border: none; gap: 0; max-height: none; overflow: visible;
        backdrop-filter: none; margin-left: auto; flex-shrink: 0;
    }
    .nav-menu li a { padding: 10px 12px; font-size: 0.85rem; border-left: none; }
    .nav-menu li a:hover { background: transparent; }
    .nav-menu li a::after {
        content: ''; display: block; width: 0; height: 2px; margin-top: 3px;
        background: var(--accent); transition: width 0.3s; border-radius: 2px;
    }
    .nav-menu li a:hover::after { width: 100%; }
    .nav-dropdown .dropdown-menu {
        display: none; position: absolute; top: 100%; left: 0;
        min-width: 200px; background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px); border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.08);
        padding: 8px 0; box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    }
    .nav-dropdown:hover .dropdown-menu { display: block; }
    .dropdown-menu li a { padding: 10px 20px; }
    .dropdown-menu li a::after { display: none; }

    .hero h1 { font-size: 4.2rem; }
    .hero-logo { max-height: 380px; }
    .section { padding: 100px 0; }
    .section-header { margin-bottom: 60px; }
    .section-header h2 { font-size: 2.5rem; }
    .members-grid { grid-template-columns: repeat(3, 1fr); }
    .music-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .albums-grid { grid-template-columns: repeat(4, 1fr); }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .volume-slider { display: block; }
    #queueBtn { display: block; }
    .event-card { padding: 22px; }
}

/* ============ LARGE DESKTOP (min 1400px) ============ */
@media (min-width: 1400px) {
    .members-grid { grid-template-columns: repeat(4, 1fr); }
    .music-grid { grid-template-columns: repeat(5, 1fr); }
    .albums-grid { grid-template-columns: repeat(5, 1fr); }
    .gallery-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ============ WIDER MEMBERS SECTION ============ */
.members-section .container {
    max-width: 1400px;
}

/* Song Dropdown Menu */
.more-menu-wrap { position:relative }
.song-dropdown { position:absolute;bottom:100%;left:50%;transform:translateX(-50%);background:rgba(15,15,15,0.98);border:1px solid rgba(255,255,255,0.12);border-radius:10px;padding:6px;min-width:170px;z-index:99999;box-shadow:0 10px 30px rgba(0,0,0,0.6);backdrop-filter:blur(10px);margin-bottom:5px }
.song-dropdown button { display:flex;align-items:center;gap:10px;width:100%;padding:10px 14px;background:none;border:none;color:#ccc;font-size:12px;cursor:pointer;border-radius:6px;text-align:left;font-weight:500;white-space:nowrap }
.song-dropdown button:hover { background:rgba(255,255,255,0.08);color:#fff }
.song-dropdown button i { width:16px;text-align:center;color:var(--accent);font-size:13px }
