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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #242628;
    font-family: "parabolica", "Helvetica Neue", Helvetica, sans-serif;
    color: #fafcfe;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ── HEADER ── */
.site-header {
    width: 100%;
    padding-right: 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.site-header .logo {
    padding: 0px 10px 0px 0px;
    background-color: #242628;
    border-bottom-right-radius: 40px;
    display: flex;
    align-items: center;
    pointer-events: all;
}

.site-header .logo img {
    height: 90px;
    display: block;
}

.site-header .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 0 28px;
    background-color: #242628;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 40px;
    height: 90px;
    pointer-events: all;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    color: #fafcfe;
    position: relative;
    transition: opacity 0.3s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

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

.main-nav a.active {
    opacity: 1;
}

/* ── HERO SECTION (WebGL canvas) ── */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
}

/* Vignette overlay */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* ── MAIN SCROLLABLE CONTENT ── */
#main-content {
    position: relative;
    z-index: 10;
    background-color: #242628;
}

/* ── SHARED SECTION STYLES ── */
.page-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #fafcfe;
}

.section-placeholder {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    opacity: 0.5;
    max-width: 600px;
}

/* ══════════════════════════════════
   MUSIC SECTION
══════════════════════════════════ */
.section-music {
    background-color: #242628;
    padding-top: 140px;
}

/* Filter Nav */
.music-filter-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fafcfe;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

@media (max-width: 1200px) {
    .music-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
    .music-grid { grid-template-columns: repeat(2, 1fr); }
}

.music-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #2e3032;
}

.music-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.75);
}

.music-card:hover .music-card-img {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.music-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    pointer-events: none;
}

.music-card-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 6px;
}

.music-card-meta {
    font-size: 11px;
    letter-spacing: 0.15em;
    opacity: 0.6;
    text-transform: uppercase;
}

/* ── Album Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: rgba(36,38,40,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 860px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.modal-close:hover { color: #fff; }

.modal-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
}

@media (max-width: 600px) {
    .modal-content { grid-template-columns: 1fr; }
}

.modal-cover {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.modal-date {
    font-size: 11px;
    letter-spacing: 0.2em;
    opacity: 0.5;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-stats {
    font-size: 11px;
    letter-spacing: 0.15em;
    opacity: 0.5;
    text-transform: uppercase;
    margin-bottom: 28px;
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-primary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fafcfe;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

.btn-watch {
    background: rgba(140,20,40,0.5);
    border: 1px solid rgba(180,30,50,0.6);
    color: #fafcfe;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-watch:hover {
    background: rgba(180,30,50,0.7);
}

.modal-tracklist {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.track-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    letter-spacing: 0.05em;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.track-row:hover { opacity: 1; }

.track-num {
    width: 24px;
    font-size: 11px;
    opacity: 0.4;
    flex-shrink: 0;
}

.track-name { flex: 1; padding: 0 12px; }

.track-dur {
    font-size: 11px;
    opacity: 0.4;
    letter-spacing: 0.1em;
}

/* ══════════════════════════════════
   TOUR SECTION
══════════════════════════════════ */
.section-tour {
    background-color: #1e2022;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.tour-bg {
    position: absolute;
    inset: 0;
    background-image: url('resources/p2.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(0.6);
    z-index: 0;
}

.section-tour .section-inner {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 100px;
}

/* Tour Hero Card */
.tour-hero {
    margin-bottom: 70px;
}

.tour-hero-card {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 28px 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 340px;
}

.tour-hero-logo {
    display: flex;
    align-items: center;
}

.tour-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.9;
}

.tour-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-ghost {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fafcfe;
    padding: 11px 22px;
    border-radius: 50px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
}

.tour-hero-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-band-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tour-subtitle {
    font-size: 13px;
    letter-spacing: 0.15em;
    opacity: 0.6;
    text-transform: uppercase;
}

/* Tour List */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 40px;
    transition: background 0.2s;
}

.tour-row:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.tour-row:hover {
    background: rgba(255,255,255,0.03);
}

.tour-city {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tour-city-venue {
    font-size: 11px;
    letter-spacing: 0.2em;
    opacity: 0.4;
    text-transform: uppercase;
    margin-left: 12px;
}

.tour-date {
    font-size: 14px;
    letter-spacing: 0.15em;
    opacity: 0.6;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tour-support {
    font-size: 11px;
    letter-spacing: 0.15em;
    opacity: 0.4;
    text-transform: uppercase;
}

.tour-support strong {
    font-weight: 400;
    margin-right: 6px;
}

.tour-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.btn-vip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fafcfe;
    padding: 9px 28px;
    border-radius: 50px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 120px;
    text-align: center;
}

.btn-vip:hover {
    background: rgba(255,255,255,0.18);
}

.btn-tickets {
    background: rgba(140,20,40,0.5);
    border: 1px solid rgba(180,30,50,0.5);
    color: #fafcfe;
    padding: 9px 28px;
    border-radius: 50px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 120px;
    text-align: center;
}

.btn-tickets:hover {
    background: rgba(180,30,50,0.7);
}

/* ══════════════════════════════════
   VIDEOS SECTION
══════════════════════════════════ */
.section-videos {
    background-color: #242628;
}

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

@media (max-width: 900px) {
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .videos-grid { grid-template-columns: 1fr; }
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #2e3032;
    aspect-ratio: 16 / 9;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
    filter: brightness(0.7);
}

.video-card:hover .video-card-thumb {
    filter: brightness(0.5);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.video-card:hover .video-play-icon {
    background: rgba(255,255,255,0.28);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    pointer-events: none;
}

.video-card-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
}

.video-card-sub {
    font-size: 10px;
    opacity: 0.5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ══════════════════════════════════
   ARCHIVE / LPU / STORE
══════════════════════════════════ */
.section-archive,
.section-lpu,
.section-store {
    background-color: #1e2022;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.section-about {
    background-color: #1e2022;
    padding: 0;
    min-height: 100vh;
}

.about-hero-img {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
}

.about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.7);
}

.about-text-block {
    padding-top: 70px;
    padding-bottom: 100px;
    max-width: 900px;
}

.about-text-block .section-heading {
    margin-bottom: 40px;
}

.about-text-block p {
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: 0.03em;
    opacity: 0.8;
    margin-bottom: 28px;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
}

/* ── FOOTER ── */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 12px 24px;
    background-color: #242628;
    border-top-right-radius: 40px;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.6;
    color: #fafcfe;
    z-index: 999;
}

.footer-links {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    padding: 12px 24px;
    background-color: #242628;
    border-top-left-radius: 40px;
    gap: 20px;
    font-size: 12px;
    opacity: 0.6;
    z-index: 999;
}

.footer-links a {
    text-decoration: none;
    color: #fafcfe;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

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

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #242628;
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}
/* ══════════════════════════════════
   NEWS SECTION
══════════════════════════════════ */
.section-news {
    background-color: #242628;
}

.news-admin {
    margin-bottom: 60px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
}

.news-admin-title {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.6;
    font-weight: 400;
}

.news-input {
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #fafcfe;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.news-input:focus {
    border-color: rgba(255,255,255,0.35);
}

.news-input::placeholder {
    opacity: 0.3;
}

.news-textarea {
    min-height: 120px;
}

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

.news-card--featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-card--featured .news-card-img-wrap {
    height: 400px;
}

@media (max-width: 1100px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-card--featured { grid-column: span 2; }
}

@media (max-width: 700px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
}

.news-card {
    background: #2e3032;
    cursor: pointer;
    transition: background 0.25s;
    overflow: hidden;
}

.news-card:hover {
    background: #363839;
}

.news-card-img-wrap {
    height: 220px;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.8);
}

.news-card:hover .news-card-img {
    transform: scale(1.04);
    filter: brightness(0.65);
}

.news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-card-category {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
}

.news-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
}

.news-card-excerpt {
    font-size: 13px;
    opacity: 0.55;
    line-height: 1.6;
    letter-spacing: 0.03em;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
}

.news-card-date {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.35;
    text-transform: uppercase;
    margin-top: 4px;
}

/* News detail (reuses albumModal) */
.news-detail {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.news-detail-img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.news-detail-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 8px 0;
}

.news-detail-text {
    font-size: 15px;
    line-height: 1.85;
    opacity: 0.8;
    letter-spacing: 0.03em;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
    margin-top: 12px;
}

/* ══════════════════════════════════
   WAVE SECTION
══════════════════════════════════ */
.section-wave {
    background-color: #1e2022;
}

.wave-intro {
    max-width: 700px;
    margin-bottom: 70px;
}

.wave-lead {
    font-size: 18px;
    line-height: 1.75;
    opacity: 0.75;
    letter-spacing: 0.03em;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
}

.wave-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wave-pillar {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
}

.wave-pillar:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.wave-pillar:hover {
    background: rgba(255,255,255,0.02);
}

.wave-pillar-icon {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    opacity: 0.3;
    padding-top: 4px;
    text-align: center;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
}

.wave-pillar-title {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.wave-pillar-text {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.6;
    letter-spacing: 0.03em;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 20px;
}

.wave-contact-btn {
    display: inline-block;
    pointer-events: all;
}

/* ══════════════════════════════════
   TBF SECTION
══════════════════════════════════ */
.section-tbf {
    background-color: #242628;
}

.tbf-header {
    margin-bottom: 40px;
}

.tbf-subtitle {
    font-size: 14px;
    letter-spacing: 0.15em;
    opacity: 0.5;
    text-transform: uppercase;
    margin-top: -40px;
    margin-bottom: 0;
}

.tbf-nav {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tbf-nav-btn {
    background: none;
    border: none;
    color: #fafcfe;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 24px;
    cursor: pointer;
    opacity: 0.4;
    border-bottom: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
    margin-bottom: -1px;
}

.tbf-nav-btn:hover { opacity: 0.7; }

.tbf-nav-btn.active {
    opacity: 1;
    border-bottom-color: #fafcfe;
}

.tbf-panel {
    display: none;
}

.tbf-panel.active {
    display: block;
}

/* Crew grid */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

@media (max-width: 1100px) { .crew-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 750px)  { .crew-grid { grid-template-columns: repeat(2, 1fr); } }

.crew-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    background: #2e3032;
    cursor: pointer;
    transition: background 0.25s;
}

.crew-card:hover {
    background: #363839;
}

.crew-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    flex-shrink: 0;
    opacity: 0.7;
}

.crew-card-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.crew-card-genre {
    font-size: 10px;
    letter-spacing: 0.15em;
    opacity: 0.4;
    text-transform: uppercase;
}

/* DJ detail modal */
.dj-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 500px) {
    .dj-detail { grid-template-columns: 1fr; }
}

.dj-detail-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    opacity: 0.5;
    flex-shrink: 0;
}

.dj-detail-bio {
    font-size: 14px;
    line-height: 1.75;
    opacity: 0.65;
    letter-spacing: 0.03em;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
    margin: 16px 0 24px;
}

/* TBF events list reuses .tour-* styles */
.tbf-events-list {
    display: flex;
    flex-direction: column;
}

/* TBF mixes reuse .videos-grid + .video-card */
.tbf-mixes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) { .tbf-mixes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tbf-mixes-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   LIVE SECTION
══════════════════════════════════ */
.section-live {
    background-color: #1e2022;
    position: relative;
}

/* Full-screen Twitch overlay */
.twitch-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: #000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.twitch-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.twitch-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    background: #0e0e10;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.twitch-live-badge {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #e91916;
    animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.twitch-channel {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    flex: 1;
}

.twitch-close-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fafcfe;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.twitch-close-btn:hover {
    background: rgba(255,255,255,0.18);
}

.twitch-iframe {
    flex: 1;
    width: 100%;
    border: none;
    display: block;
}

/* Live grid */
.live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 70px;
}

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

.live-twitch-card {
    background: #2e3032;
    border-radius: 16px;
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.live-twitch-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.live-twitch-logo {
    width: 52px;
    height: 52px;
    background: rgba(145,70,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.twitch-icon {
    width: 24px;
    height: 24px;
    color: #9146ff;
}

.live-twitch-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.live-twitch-desc {
    font-size: 12px;
    opacity: 0.5;
    letter-spacing: 0.05em;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
}

.live-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    position: absolute;
    top: 0;
    right: 0;
}

.live-status-dot.live-pulse {
    background: #e91916;
    animation: livePulse 1.4s ease-in-out infinite;
}

.live-twitch-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-twitch {
    background: rgba(145,70,255,0.2);
    border: 1px solid rgba(145,70,255,0.4);
    color: #fafcfe;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-twitch:hover {
    background: rgba(145,70,255,0.4);
    border-color: rgba(145,70,255,0.7);
}

.live-next-card {
    background: #2e3032;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.live-next-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.4;
}

.live-next-countdown {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: 0.06em;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    line-height: 1;
}

.live-next-name {
    font-size: 12px;
    letter-spacing: 0.1em;
    opacity: 0.45;
    text-transform: uppercase;
}

.live-past-heading {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.5;
    margin-bottom: 28px;
}

/* ══════════════════════════════════
   ARCHIVE SECTION (override)
══════════════════════════════════ */
.section-archive {
    background-color: #242628;
    border-top: none;
}

.archive-nav {
    margin-bottom: 40px;
    display: flex;
    gap: 12px;
}

.archive-panel {
    display: none;
}

.archive-panel.active {
    display: block;
}

.archive-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

@media (max-width: 1100px) { .archive-photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 750px)  { .archive-photo-grid { grid-template-columns: repeat(2, 1fr); } }

.archive-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #2e3032;
}

.archive-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.75);
}

.archive-photo:hover .archive-photo-img {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.archive-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-size: 11px;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    text-transform: uppercase;
}

.archive-photo:hover .archive-photo-caption {
    opacity: 1;
}

/* Lightbox */
.lightbox-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-box .modal-close {
    position: fixed;
    top: 20px;
    right: 24px;
}

#lightboxImg {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.lightbox-caption {
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: 0.15em;
    opacity: 0.5;
    text-transform: uppercase;
    text-align: center;
}

/* ══════════════════════════════════
   STORE SECTION (override)
══════════════════════════════════ */
.section-store {
    background-color: #1e2022;
    border-top: none;
}

.store-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

@media (max-width: 1100px) { .store-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 750px)  { .store-grid { grid-template-columns: repeat(2, 1fr); } }

.store-card {
    cursor: pointer;
    background: #2e3032;
    transition: background 0.25s;
    overflow: hidden;
}

.store-card:hover {
    background: #363839;
}

.store-card-img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
}

.store-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.8);
}

.store-card:hover .store-card-img {
    transform: scale(1.04);
    filter: brightness(0.6);
}

.store-card-info {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-card-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-card-price {
    font-size: 12px;
    letter-spacing: 0.05em;
    opacity: 0.55;
}

/* Product modal extras */
.product-desc {
    font-size: 14px;
    line-height: 1.75;
    opacity: 0.65;
    letter-spacing: 0.03em;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 300;
    margin: 12px 0 20px;
}

.product-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.size-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fafcfe;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: "parabolica", "Helvetica Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn:hover,
.size-btn.selected {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════
   ABOUT tweaks
══════════════════════════════════ */
.about-contact-btn {
    display: inline-block;
    margin-top: 10px;
    pointer-events: all;
}