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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 0.3rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active {
    font-weight: 600;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.pexels.com/photos/167636/pexels-photo-167636.jpeg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.hero-logo {
    height: 150px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    font-size: 0.9rem;
    cursor: pointer;
    background: transparent;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Section */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

/* Artists Section */
.artists {
    background: #0a0a0a;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.artist-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.artist-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.artist-card:hover .artist-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.3s ease;
    border-radius: 8px;
}

.artist-card:hover .artist-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%);
}

.artist-genre {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    color: #fff;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-name {
    transform: translateY(-5px);
}

.artist-cta {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.artist-card:hover .artist-cta {
    opacity: 0.9;
    transform: translateY(0);
}

/* Chansonniers Section */
.chansonniers {
    background: #111;
}

.chansonniers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.chansonnier-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.chansonnier-card:hover {
    transform: translateY(-10px);
}

.chansonnier-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.chansonnier-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.chansonnier-card:hover .chansonnier-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.chansonnier-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.3s ease;
    border-radius: 8px;
}

.chansonnier-card:hover .chansonnier-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%);
}

.chansonnier-genre {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    color: #fff;
}

.chansonnier-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
}

.chansonnier-card:hover .chansonnier-name {
    transform: translateY(-5px);
}

.chansonnier-cta {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.chansonnier-card:hover .chansonnier-cta {
    opacity: 0.9;
    transform: translateY(0);
}

/* Tribute Section */
.tributes {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.tributes::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.01) 10px,
        rgba(255, 255, 255, 0.01) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(50px); }
}

.tribute-intro {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.tribute-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.tribute-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.tribute-card:hover {
    transform: translateY(-10px);
}

.tribute-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tribute-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tribute-image.contain {
    object-fit: contain;
    padding: 1rem;
}

.tribute-card:hover .tribute-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.tribute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    border-radius: 8px;
}

.tribute-card:hover .tribute-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%);
}

.tribute-band-name {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tribute-original {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.tribute-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.tribute-item-simple {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.tribute-item-simple:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
}

.tribute-item-name {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
    width: 100%;
}

.tribute-item-subtitle {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.tribute-item-simple.more {
    border-style: dashed;
    opacity: 0.6;
}

.tribute-item-simple.more:hover {
    opacity: 1;
}

.tribute-cta {
    text-align: center;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.tribute-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Artist Detail Page */
.page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: #0a0a0a;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-artist-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.page-artist-header {
    margin-bottom: 2rem;
}

.page-artist-genre {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.page-artist-name {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.page-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-section {
    margin-bottom: 2.5rem;
}

.page-section-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1.2rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

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

.btn-secondary {
    padding: 1.2rem 2rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

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

.streaming-link {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.streaming-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.discography {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

.band-members {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

.specialty-list {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.specialty-list strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    opacity: 1;
    font-size: 1rem;
}

/* Spectacles */
.shows {
    background: #000;
}

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

/* À propos */
.about {
    background: #111;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Newsletter */
.newsletter {
    background: #000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.newsletter-text {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-submit {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.newsletter-submit:hover {
    background: #000;
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}

/* Contact */
.contact {
    background: #111;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

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

.form-submit {
    width: 100%;
    padding: 1rem;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-submit:hover {
    background: #000;
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 999;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* Back button - sticky bar on detail pages */
.back-bar {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 60%, transparent);
    padding: 0.8rem 20px;
    margin: 0 -20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.back-btn:hover {
    opacity: 1;
}

/* Anchor offset for fixed header */
.page-hero[id] {
    scroll-margin-top: 100px;
}

section[id] {
    scroll-margin-top: 100px;
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .streaming-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .menu-toggle {
        display: block;
    }

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

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

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

    .tribute-grid-simple {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
    }

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

    .newsletter-input,
    .newsletter-submit {
        width: 100%;
    }

    .action-buttons {
        flex-direction: column;
    }

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

/* Roster Filter */
.roster-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.filter-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.roster-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.4s ease;
    text-decoration: none;
    color: #fff;
}

.roster-card:hover {
    transform: translateY(-10px);
}

.roster-card.hidden {
    display: none;
}

.roster-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.roster-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.roster-image.contain {
    object-fit: contain;
    padding: 1.5rem;
}

.roster-image.invert {
    filter: invert(1);
}

.roster-card:hover .roster-image.invert {
    filter: invert(1) brightness(0.7);
}

.roster-card:hover .roster-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.roster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.3s ease;
    border-radius: 8px;
}

.roster-card:hover .roster-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%);
}

.roster-category {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-bottom: 0.3rem;
}

.roster-genre {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.roster-name {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.3s ease;
}

.roster-card:hover .roster-name {
    transform: translateY(-5px);
}

.roster-cta {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0.3rem;
}

.roster-card:hover .roster-cta {
    opacity: 0.9;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .roster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .roster-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .roster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .roster-name {
        font-size: 0.9rem;
    }

    .roster-category,
    .roster-genre {
        font-size: 0.55rem;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    justify-content: center;
}

.lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 100%;
    overflow-y: auto;
    background: #111;
    -webkit-overflow-scrolling: touch;
}

.lightbox-close {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
    background: linear-gradient(to bottom, #111 60%, transparent);
}

.lightbox-close-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.lightbox-close-btn:hover {
    background: #fff;
    color: #000;
}

.lightbox-body {
    padding: 0 2rem 3rem;
}

.lightbox-body .page-artist-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.lightbox-body .page-artist-genre {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.lightbox-body .page-artist-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.lightbox-loading {
    text-align: center;
    padding: 4rem 2rem;
    opacity: 0.5;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .lightbox-inner {
        margin: 2rem auto;
        height: auto;
        max-height: calc(100vh - 4rem);
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .lightbox-body {
        padding: 0 1.2rem 2rem;
    }

    .lightbox-body .page-artist-image {
        max-height: 250px;
    }

    .lightbox-body .page-artist-name {
        font-size: 1.6rem;
    }
}

/* Hide detail sections visually but keep in DOM for lightbox cloning */
.detail-section-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
