/* Fruity Loops Debauchery Bros — index page */
body.fldc-page.fldc-index-page main { position: relative; padding: 0; }

body.fldc-page.fldc-index-page .breadcrumb a { color: var(--fldc-bg-screen-light); }
body.fldc-page.fldc-index-page .breadcrumb a:hover { color: var(--fldc-arc-yellow); }
body.fldc-page.fldc-index-page .breadcrumb .sep { color: var(--fldc-bg-screen-light); opacity: 0.6; }
body.fldc-page.fldc-index-page .breadcrumb .current { color: var(--fldc-bg-screen-light); }

.artist-hero {
    width: 100%;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    margin-bottom: 0;
}
.artist-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(0.9) brightness(0.65);
}
.artist-hero-tint {
    position: absolute;
    inset: 0;
    background: rgba(72, 168, 64, 0.06);
    mix-blend-mode: screen;
}
.artist-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16,22,14,0.0)  0%,
        rgba(16,22,14,0.0)  85%,
        rgba(16,22,14,0.85) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 0 20px 36px;
    display: flex;
    flex-direction: column;
}

.artist-header {
    width: 100%;
    animation: fadeUp 0.5s ease both;
}

.artist-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: var(--fldc-arc-green);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    opacity: 0.8;
}

.artist-name {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(12px, 2.5vw, 22px);
    color: var(--fldc-bg-screen-light);
    line-height: 1.6;
    letter-spacing: 0.06em;
    text-shadow: 0 0 28px rgba(208, 96, 32, 0.5);
    margin-bottom: 6px;
}

.artist-aka {
    font-family: 'Courier Prime', monospace;
    font-size: 13px;
    color: var(--fldc-bg-neutral);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    opacity: 0.75;
}
.artist-aka strong { color: var(--fldc-arc-yellow); font-style: normal; }


.divider {
    width: 100%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fldc-arc-dark), var(--fldc-arc-orange), var(--fldc-arc-dark), transparent);
    margin: 8px 0 40px;
    opacity: 0.4;
}

.artist-body {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeUp 0.5s 0.1s ease both;
}

.section-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--fldc-arc-orange);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--fldc-arc-dark);
    opacity: 0.9;
}

.bio p {
    font-family: 'Courier Prime', monospace;
    font-size: 14px;
    color: var(--fldc-bg-screen-light);
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.9;
}
.bio p a { color: var(--fldc-arc-yellow); text-decoration: none; }
.bio p a:hover { text-decoration: underline; }
.bio .link-row {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ext-link {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: var(--fldc-arc-green);
    text-decoration: none;
    letter-spacing: 0.1em;
    padding: 7px 12px;
    border: 1px solid var(--fldc-arc-green);
    transition: background 0.15s, color 0.15s;
}
.ext-link:hover { background: var(--fldc-arc-green); color: var(--fldc-bg-surface); }

.photo-strip-section {
    width: 100%;
    max-width: 960px;
    margin-bottom: 48px;
    animation: fadeUp 0.5s 0.25s ease both;
}
.photo-strip-wrap { position: relative; width: 100%; }
.photo-strip {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--fldc-arc-dark) #0a0a14;
    padding-bottom: 10px;
    cursor: grab;
}
.photo-strip:active { cursor: grabbing; }
.photo-strip::-webkit-scrollbar { height: 3px; }
.photo-strip::-webkit-scrollbar-track { background: #0a0a14; }
.photo-strip::-webkit-scrollbar-thumb { background: var(--fldc-arc-dark); }
.photo-item {
    flex-shrink: 0;
    position: relative;
    height: clamp(200px, 35vw, 380px);
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid var(--fldc-arc-dark);
    transition: border-color 0.2s;
    cursor: pointer;
}
.photo-item:hover { border-color: var(--fldc-arc-orange); }
.photo-item.landscape { aspect-ratio: 16/9; }
.photo-item.square    { aspect-ratio: 1/1; }
.photo-item.wide      { aspect-ratio: 4/3; }
.photo-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: saturate(0.85) brightness(0.88);
}
.photo-item:hover img { transform: scale(1.03); filter: saturate(1.0) brightness(1.0); }
.photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 22px 10px 8px;
    background: linear-gradient(to top, rgba(8,8,18,0.88) 0%, transparent 100%);
    font-family: 'Press Start 2P', monospace;
    font-size: 5px; color: var(--fldc-arc-orange); letter-spacing: 0.1em;
    opacity: 0; transition: opacity 0.25s ease;
}
.photo-item:hover .photo-caption { opacity: 1; }
.strip-scroll-hint {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px; color: var(--fldc-arc-orange); letter-spacing: 0.15em;
    margin-top: 8px; opacity: 0.35; text-align: right; transition: opacity 0.4s;
}
.photo-strip-wrap.scrolled .strip-scroll-hint { opacity: 0; }

.photo-lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(4,4,12,0.96); z-index: 1000;
    align-items: center; justify-content: center; flex-direction: column;
}
.photo-lightbox.open { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 82vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img { max-width: 90vw; max-height: 82vh; object-fit: contain; border: 1px solid var(--fldc-arc-dark); }
.lb-nav { display: flex; align-items: center; gap: 28px; margin-top: 16px; }
.lb-btn { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--fldc-arc-orange);
    background: none; border: 1px solid var(--fldc-arc-dark); padding: 7px 14px; cursor: pointer;
    letter-spacing: 0.1em; transition: color 0.15s, border-color 0.15s; }
.lb-btn:hover { color: var(--fldc-arc-yellow); border-color: var(--fldc-arc-orange); }
.lb-close { font-family: 'Press Start 2P', monospace; font-size: 7px; color: var(--fldc-arc-orange);
    background: none; border: none; cursor: pointer; padding: 8px;
    letter-spacing: 0.1em; transition: color 0.15s; }
.lb-close:hover { color: var(--fldc-arc-yellow); }
.lb-counter { font-family: 'Press Start 2P', monospace; font-size: 6px;
    color: var(--fldc-arc-orange); letter-spacing: 0.12em; opacity: 0.55; min-width: 50px; text-align: center; }
.lb-cap { font-family: 'Press Start 2P', monospace; font-size: 6px;
    color: var(--fldc-arc-orange); letter-spacing: 0.1em; margin-top: 8px; opacity: 0.45; min-height: 14px; }

@media (max-width: 640px) { .artist-name { font-size: 12px; } }

.fldc-page .mb-link-wrap { width: 100%; max-width: 900px; padding: 0 20px; margin-bottom: 40px; animation: fadeUp 0.5s 0.15s ease both; }

/* ── MB MEMBERS LINK ── */
.fldc-page .mb-members {
    display: inline-flex;
    align-items: center;
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: var(--fldc-bg-neutral);
    border: 1px solid var(--fldc-arc-dark);
    padding: 6px 12px;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
    gap: 0 4px;
}
.fldc-page .mb-members .mb-abbr {
    color: var(--fldc-bg-screen-light);
    text-decoration: none;
    transition: color 0.15s;
}
.fldc-page .mb-members .mb-abbr:hover { color: var(--fldc-arc-yellow); }
.fldc-page .mb-members:hover { border-color: var(--fldc-arc-yellow); }
.fldc-page .mb-members .mb-sep { color: var(--fldc-arc-dark); margin: 0 2px; }

/* ── FOOTER ── */
.fldc-page footer { position: absolute; bottom: 0; left: 0; right: 0; border-top: none; z-index: 2; }