/* --- YAZI TİPİ VE CSS DEĞİŞKENLERİ --- */
@font-face {
    font-family: 'HeadingNowVariable';
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
    src: url('../fonts/HeadingNowVariable.woff2') format('woff2');
}

:root {
    --bg-color: #121212;
    --card-color: #1a1a1a;
    --text-color: #dfdddd;
    --text-muted-color: #888;
    --accent-color: #9f5dff;
	--accent-color2: #ffdf00;
    --glow-color: rgba(159, 93, 255, 0.5);
	--glow-color2: rgba(255, 223, 0, 0.5);	
    /* YENİ ZORLUK RENKLERİ */
    --difficulty-easy: #4caf50;    /* 1-2 */
    --difficulty-medium: #2196f3;   /* 3-4 */
    --difficulty-hard: #9c27b0;     /* 5-6 (Mor) */
    --difficulty-expert: #ffeb3b;   /* 7 (Sarı) */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'HeadingNowVariable', Arial, sans-serif;
    font-variation-settings: "wdth" 668, "wght" 500;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    user-select: none;
}

body.modal-open {
    overflow: hidden;
}

h2, p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--accent-color2);
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-color: var(--accent-color2); border-radius: 10px; border: 2px solid var(--bg-color); }
::-webkit-scrollbar-thumb:hover { background-color: var(--glow-color2); }

/* --- BAŞLANGIÇ YÜKLEME EKRANI --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-color2);
    animation: spin 1s linear infinite;
}

/* Container */
.container {
    max-width: 2200px;
    margin: 0 auto;
    padding: 0 55px;
}

/* Header */
.header {
    background-color: rgba(18, 18, 18, 0.7);
    color: white;
    padding: 10px 20px;
    width: 100%;
    z-index: 100;
    position: fixed;
    top: 0;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header img { max-height: 45px; cursor: pointer; }
.search-wrapper { display: flex; align-items: center; }
.header input[type="search"] {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: var(--card-color);
    color: white;
    outline: none;
    font: inherit;
    font-size: 14px;
    width: 250px;
    transition: all 0.3s ease;
}
.header input[type="search"]:focus { border-color: var(--accent-color2); box-shadow: 0 0 0 3px var(--glow-color2); }
.header .links a { color: white; padding: 6px 10px; border-radius: 6px; transition: background-color 0.2s ease, color 0.2s ease; }
.header .links a:hover { background-color: var(--accent-color); color: white; }

.header-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(18, 18, 18, 0.7); /* Şeffaflığı header ile aynı yaptık */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 100%;
    z-index: 100;
    position: fixed;
    top: 65px;
}
.header-info .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.header-info-left, .header-info-right { display: flex; align-items: center; gap: 15px; /* Elemanlar arası boşluk */ }
.header-info-left span, .header-info-right span { font-size: 14px; color: #aaa; }
.track-info-separator { color: #555; } /* Ayırıcı çizgi rengi */


/* Content */
main {
    margin-top: 135px; /* Üstteki sabit elemanlar için boşluk */
}
.content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 15px;
}

/* --- KART STİLLERİ --- */
/* YENİ .jam-track KURALI */
.jam-track {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 0;
    border-radius: 35px;	
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: var(--card-color);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 84px;
    
    /* YENİ: Geçiş (transition) güncellendi */
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.jam-track:hover {
    transform: scale(1.15); /* Üzerine gelince %5 büyüt */
    border-color: var(--accent-color2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px var(--glow-color2); /* Gölgeyi de biraz daha belirgin yapalım */
    z-index: 10;
}

.jam-track img {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}
.jam-track > div:first-of-type {
    flex-grow: 1;
    min-width: 0;
    margin-right: 10px;
}
.jam-track h2 {
    font-size: 15px;
    line-height: 1.3;
    color: var(--text-color);
    margin: 0;
    font-variation-settings: "wght" 550, "wdth" 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	
}
.jam-track p {

	font-size: 15px;
    line-height: 1.1;
    color: var(--text-muted-color);
    margin-bottom: 2px;
    font-variation-settings: "wght" 400, "wdth" 400;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	
	
}

/* --- ETİKET STİLLERİ --- */
.label-container {
    position: static;
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.new-label, .featured-label {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    color: #000;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    font-family: 'HeadingNowVariable', sans-serif;
    font-variation-settings: "wght" 600, "wdth" 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.new-label { background-color: #00BFFF; }
.featured-label { background-color: #FFD700; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.active { opacity: 1; }
.modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(28, 28, 28, 0.85);
    border-radius: 25px;
    width: 90%;
    max-width: 550px;
    padding: 25px;
    cursor: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-content::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: var(--album-art-bg); background-size: cover; background-position: center; filter: blur(30px) brightness(0.4) saturate(1.2); transform: scale(1.2); z-index: -1; opacity: 0.7; }
.modal-close { position: absolute; top: 10px; right: 15px; font-size: 30px; color: #ccc; cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: white; }
.modal-header { display: flex; align-items: center; gap: 20px; }
.modal-header img { width: 100px; height: 100px; border-radius: 12px; flex-shrink: 0; }
.track-info { flex-grow: 1; } /* YENİ: Ses butonuna yer açmak için */
.track-info h2 { font-size: 24px; font-variation-settings: "wght" 600, "wdth" 400; }
.track-info p { font-size: 16px; color: #bbb; margin-top: 5px; font-variation-settings: "wght" 400, "wdth" 400; }
.modal-body { margin-top: 25px; }
#modalDetails { padding: 15px; border-radius: 10px; background-color: rgba(0, 0, 0, 0.4); margin-bottom: 15px; font-size: 14px; line-height: 1.6; }
#modalDetails p { margin-bottom: 5px; }
#modalDifficulties { display: grid; grid-template-columns: 1fr; gap: 12px; background-color: rgba(0, 0, 0, 0.4); padding: 15px; border-radius: 10px; }

/* YENİ EKLENDİ - Zorluk Ayırıcı Stili */
.difficulty-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 4px 0; /* Üst ve alt boşluğu ayarlar */
    border-radius: 1px;
}

/* --- YENİ SES BUTONU TASARIMI --- */
.mute-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.mute-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
.mute-button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.unmute-icon {
    display: none;
}

/* Zorluk Seviyeleri */
.difficulty { display: flex; align-items: center; }
.instrument-icon { width: 30px; height: 30px; background-image: url('../images/instrument-icons.png'); background-repeat: no-repeat; margin-right: 15px; flex-shrink: 0; }
.guitar { background-position: 0 0; } .drums { background-position: -30px 0; } .bass { background-position: -60px 0; } .vocals { background-position: -90px 0; } .plastic-guitar { background-position: -120px 0; } .plastic-drums { background-position: -150px 0; } .plastic-bass { background-position: -180px 0; }
.pro-vocals {
    background-image: url('../images/pro_vocals.png'); /* Sprite yerine kendi resmini kullanır */
    background-position: 0 0; /* Konumlandırmayı sıfırlar */
    background-size: contain; /* İkonun kutuya sığmasını sağlar */
}

.difficulty-bars { display: flex; gap: 4px; flex-grow: 1; height: 22px; background-color: rgba(255, 255, 255, 0.1); border-radius: 4px; padding: 4px; }
.difficulty-bar { flex: 1; height: 100%; background-color: transparent; border-radius: 2px; transition: background-color 0.3s ease; }

/* Filtreleme */
/* --- SABİT FİLTRE İÇİN YENİ VE DOĞRU STİL --- */
.filter-wrapper {
    position: sticky;
    top: 115px; /* header (65px) + header-info (50px) */
    z-index: 50;
    padding: 15px 0;
    
    /* YENİ: Şeffaf ve bulanık arka plan (tıpkı header gibi) */
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Safari uyumluluğu için */
    
    margin-bottom: 0; /* Eski margin'i sıfırlıyoruz */
}
.custom-select {
    /* ----- YAZI TİPİ DÜZELTMESİ ----- */
    font-family: 'HeadingNowVariable', Arial, sans-serif;
    font-variation-settings: "wght" 500, "wdth" 400 !important;
    font-size: 14px; /* Boyutu biraz küçülttük */
    letter-spacing: normal !important;
    text-transform: none !important;

    /* ----- GÖRSEL STİLLER ----- */
    background-color: var(--card-color);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 35px 8px 15px; /* Padding'i azalttık */
    border-radius: 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}
.custom-select:hover { border-color: var(--accent-color2); box-shadow: 0 0 10px var(--glow-color2); }
.custom-select option {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-variation-settings: normal !important;
    font-weight: 500;
    font-size: 15px;
    background-color: #2a2a2a;
    color: #dfdddd;
}

/* Yükleme Spinner (Kart içi) */
.loading-spinner { min-width: 60px; min-height: 60px; width: 60px; height: 60px; flex-shrink: 0; border-radius: 12px; background-color: rgba(236, 237, 238, .1); position: relative; margin-right: 15px; }
.loading-spinner::after { content: ''; position: absolute; top: 50%; left: 50%; width: 24px; height: 24px; margin: -12px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--accent-color2); animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Hareketli Arka Plan Efekti */
.background-blobs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -1; filter: blur(80px); opacity: 0.6; }
.blob { position: absolute; border-radius: 50%; will-change: transform; }
.blob-1 { width: 400px; height: 400px; top: -150px; left: -150px; background: #ff4e50; animation: move 25s infinite alternate; }
.blob-2 { width: 350px; height: 350px; top: 50%; right: -100px; background: #f9d423; animation: move 30s infinite alternate-reverse; }
.blob-3 { width: 300px; height: 300px; bottom: -150px; left: 20%; background: #42a5f5; animation: move 28s infinite alternate; }
.blob-4 { width: 250px; height: 250px; top: 10%; right: 30%; background: #ab47bc; animation: move 35s infinite alternate-reverse; }
.blob-5 { width: 200px; height: 200px; bottom: 10%; right: 5%; background: #26a69a; animation: move 22s infinite alternate; }
.blob-6 { width: 500px; height: 500px; bottom: -200px; left: -200px; background: #ec407a; animation: move 40s infinite alternate-reverse; }
@keyframes move { from { transform: translate(0, 0) rotate(0deg) scale(1); } to { transform: translate(40vw, 50vh) rotate(360deg) scale(1.2); } }

.music-note { position: absolute; font-size: 28px; color: var(--accent-color2); user-select: none; pointer-events: none; animation: float-away 3s ease-out forwards; z-index: 9999; text-shadow: 0 0 8px rgba(45, 212, 191, 0.7); }
@keyframes float-away { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(-100px) scale(0.5) rotate(20deg); } }

/* Diğer Modal ve Navigasyon Stilleri */
.modal-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.5); border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; color: white; display: flex; align-items: center; justify-content: center; transition: background-color 0.2s; }
.modal-nav:hover { background: rgba(0, 0, 0, 0.8); }
.modal-prev { left: 20px; }
.modal-next { right: 20px; }

/* ======================================= */
/* AUDIO VISUALIZER GLOW EFEKTİ (ORGANİK BLOB)  */
/* ======================================= */

.audio-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px; 
    height: 750px;
    transform: translate(-50%, -50%);
    
    /* YENİ: Sabit background kaldırıldı. JS tarafından atanacak. */
    /* background: radial-gradient(...); */ 

    animation: organic-morph 15s ease-in-out infinite alternate;
    filter: blur(50px); /* Bulanıklığı biraz artırdık */
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    pointer-events: none;


}

/* YENİ: Organik şekil değiştirme animasyonu */
@keyframes organic-morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 30% 70% 30% 70%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Modal içeriğinin her zaman en üstte kalmasını sağlıyoruz */
.modal-content {
    /* ... diğer modal-content stilleri ... */
    z-index: 1001; 
}
/* --- TR/EN BUTONU KESİN ÇÖZÜM --- */
#lang-toggle-btn {
    /* 1. Font Sorununu Çöz (Standart fonta zorla) */
    font-family: Arial, Helvetica, sans-serif !important;
    font-variation-settings: normal !important; 
    
    /* 2. Görünürlük Ayarları */
    color: #ffffff !important; /* Kesinlikle beyaz olsun */
    font-size: 15px !important;
    font-weight: 700 !important;
    
    /* 3. Boyutlandırma (Sıkışmayı önler) */
    min-width: 40px !important; /* En az bu kadar geniş olsun */
    height: 30px !important;
    
    /* 4. Hizalama */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    
    /* 5. Sıfırlama */
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Geçici olarak çerçeve verelim ki yerini görelim */
    border-radius: 5px !important;
    padding: 0 5px !important;
    margin: 0 !important;
    opacity: 1 !important;
}

#lang-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    cursor: pointer;
}
/* YouTube Oynatıcı Kapsayıcısı */
#youtubePlayerContainer {
    position: relative; /* İçindeki overlay'ı konumlandırmak için gerekli */
    width: 100%;
    /* Yükseklik/Genişlik oranını korumak için (16:9) */
    padding-top: 56.25%; /* 9 / 16 = 0.5625 */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    display: none; /* Başlangıçta gizli olsun */
}

/* Gömülü YouTube Videosu */
#youtubePlayerContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Tıklamayı Engelleyen Şeffaf Katman */
.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* Videonun üzerinde olmasını sağlar */
    /* Bu katmanın kendisi şeffaf ve tıklanabilir değildir,
       ama altında kalan her şeyi tıklanamaz yapar. */
}
/* --- SAYFA ARKAPLAN RESMİ --- */
/* --- Günlük setlist (site teması: sarı + mor vurgu, jam kartlarıyla uyumlu) --- */
/* Kaydırma ile solan günlük setlist bloğu (opacity JS ile güncellenir) */
#setlistSection.setlist-section:not([hidden]) {
    will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
    #setlistSection.setlist-section {
        will-change: auto;
    }
}

.setlist-section {
    --setlist-sticky-top: 122px;
    --setlist-frame-radius: 24px;
    position: sticky;
    top: var(--setlist-sticky-top);
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
    padding: 16px 22px 22px;
    box-sizing: border-box;
    width: fit-content;
    overflow-x: visible;
    overflow-y: visible;
    border-radius: var(--setlist-frame-radius);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, var(--bg-color) 58%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.setlist-head-title {
    margin: 0 0 2px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-color);
}

.setlist-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px 12px;
    margin-bottom: 10px;
    width: 100%;
    max-width: min(1088px, 100%);
    box-sizing: border-box;
}

.setlist-head-text {
    flex: 1 1 200px;
    min-width: 0;
}

.setlist-head-sub {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--text-muted-color);
    max-width: min(40rem, 100%);
}

.setlist-updated {
    font-size: 0.68rem;
    font-family: ui-monospace, monospace;
    color: var(--text-muted-color);
    white-space: nowrap;
}

.setlist-strip {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(14px, 2.5vw, 22px);
    padding: 4px 0 10px;
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

.setlist-strip::-webkit-scrollbar {
    height: 7px;
}

.setlist-strip::-webkit-scrollbar-thumb {
    background: var(--accent-color2);
    border-radius: 999px;
}

.setlist-hero-wrap {
    flex: 0 0 340px;
    width: 340px;
    max-width: min(100%, 360px);
    min-width: 280px;
    flex-shrink: 0;
    overflow-x: visible;
    overflow-y: visible;
}

.setlist-hero-wrap.setlist-hero-wrap--open {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    z-index: 96;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

.setlist-hero-cluster {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    border-radius: 16px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.setlist-hero-wrap.setlist-hero-wrap--open .setlist-hero-cluster {
    width: max-content;
    max-width: none;
    align-items: stretch;
}

.setlist-hero-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    color: inherit;
    background-color: var(--card-color);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    align-self: flex-start;
    box-sizing: border-box;
}

.setlist-hero-wrap.setlist-hero-wrap--open .setlist-hero-card {
    flex: 0 0 clamp(260px, 36vw, 340px);
    width: clamp(260px, 36vw, 340px);
    max-width: clamp(260px, 36vw, 340px);
    border-radius: 16px 0 0 16px;
    border-right: 1px solid rgba(255, 223, 0, 0.25);
    align-self: stretch;
}

.setlist-hero-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color2);
    box-shadow: 0 0 0 1px var(--glow-color2), 0 10px 28px rgba(0, 0, 0, 0.5);
}

.setlist-cover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    width: 100%;
    aspect-ratio: 1;
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 10px 0;
    box-sizing: border-box;
    background: #141414;
    overflow: hidden;
    border-radius: 0;
}

.setlist-cover-cell {
    position: relative;
    min-height: 0;
    background: #222;
    overflow: hidden;
}

.setlist-cover-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.setlist-cover-cell--empty {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
}

.setlist-cover-cell--span2 {
    grid-column: 1 / -1;
}

.setlist-cover-cell--more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 100%);
    border: 2px solid var(--accent-color2);
    box-sizing: border-box;
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    font-weight: 800;
    font-variation-settings: "wdth" 500, "wght" 800;
    color: var(--accent-color2);
    line-height: 1;
    text-shadow:
        0 0 2px #000,
        0 2px 0 #000,
        0 3px 8px rgba(0, 0, 0, 0.9);
}

/* Açık kart: 4’ten fazla parça varsa tüm kapaklar 3 sütun ızgarada */
.setlist-cover-grid--expanded {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    aspect-ratio: unset;
    max-height: min(280px, 46vh);
    overflow-x: hidden;
    overflow-y: auto;
    align-content: start;
}

.setlist-cover-grid--expanded .setlist-cover-cell {
    aspect-ratio: 1;
    min-height: 0;
}

.setlist-hero-footer {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 18px;
    min-height: 0;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.9) 0%, var(--card-color) 100%);
    width: 100%;
    box-sizing: border-box;
}

.setlist-hero-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-color);
    font-variation-settings: "wdth" 550, "wght" 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);
}

.setlist-hero-meta {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-muted-color);
    font-variation-settings: "wdth" 500, "wght" 550;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.setlist-hero-countdown {
    display: block;
    margin-top: 2px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111;
    font-variation-settings: "wdth" 500, "wght" 800;
    background: linear-gradient(90deg, #ffe566 0%, var(--accent-color2) 45%, #ccb300 100%);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 14px var(--glow-color2);
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    word-break: break-word;
}

.setlist-hero-drawer {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: stretch;
    flex: 0 0 auto;
    gap: 4px;
    width: min(300px, calc(100vw - 120px));
    min-width: 240px;
    max-width: min(320px, calc(100vw - 80px));
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, rgba(42, 28, 58, 0.98) 0%, rgba(26, 18, 40, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: none;
    border-radius: 0 16px 16px 0;
    padding: 8px 8px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color2) rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.setlist-hero-drawer::-webkit-scrollbar {
    width: 6px;
}

.setlist-hero-drawer::-webkit-scrollbar-thumb {
    background: var(--accent-color2);
    border-radius: 999px;
}

.setlist-hero-wrap.setlist-hero-wrap--open .setlist-hero-drawer {
    display: flex;
}

.setlist-drawer-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    width: 100%;
    margin: 0 0 4px;
    padding: 7px 8px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.setlist-drawer-row:last-child {
    margin-bottom: 0;
}

.setlist-drawer-row:hover:not(:disabled) {
    background: rgba(255, 223, 0, 0.12);
    box-shadow: 0 0 0 1px rgba(159, 93, 255, 0.35);
}

.setlist-drawer-row:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.setlist-drawer-thumb {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
}

.setlist-drawer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.setlist-drawer-text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.setlist-drawer-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.setlist-drawer-artist {
    display: block;
    font-size: 0.62rem;
    line-height: 1.2;
    color: var(--text-muted-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.setlist-drawer-meta {
    display: block;
    font-size: 0.56rem;
    line-height: 1.2;
    color: var(--text-muted-color);
    margin-top: 2px;
}

.setlist-drawer-play {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--accent-color);
    opacity: 0.9;
}

.setlist-drawer-row:disabled .setlist-drawer-play {
    opacity: 0.25;
}

@media (max-width: 768px) {
    .setlist-section {
        width: 100%;
        max-width: 100%;
        margin: 0 0 12px;
        padding: 10px 16px 20px;
        --setlist-sticky-top: 118px;
    }

    .setlist-strip {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
    }

    .setlist-hero-wrap {
        flex: 0 0 min(300px, 78vw);
        width: min(300px, 78vw);
        min-width: 260px;
        max-width: none;
    }

    .setlist-hero-card {
        min-width: 0;
    }

    .setlist-cover-grid {
        padding: 8px 8px 0;
    }

    .setlist-hero-wrap.setlist-hero-wrap--open .setlist-hero-cluster {
        flex-direction: row;
        align-items: stretch;
        width: max-content;
        max-width: none;
    }

    .setlist-hero-wrap.setlist-hero-wrap--open .setlist-hero-card {
        flex: 0 0 min(260px, 72vw);
        width: min(260px, 72vw);
        max-width: min(260px, 72vw);
        border-radius: 16px 0 0 16px;
        border-right: 1px solid rgba(255, 223, 0, 0.25);
        border-bottom: none;
    }

    .setlist-hero-drawer {
        flex: 0 0 auto;
        align-self: stretch;
        width: min(260px, 58vw);
        min-width: 200px;
        max-width: min(280px, 62vw);
        border-left: none;
        border-top: none;
        border-radius: 0 16px 16px 0;
    }

    .setlist-hero-title {
        font-size: 1.1rem;
    }

    .setlist-hero-meta {
        font-size: 0.92rem;
    }

    .setlist-hero-countdown {
        font-size: 0.82rem;
        padding: 10px 14px;
    }
}

/* --- body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/bg.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}  --- */

