/* --- POSTLAIN ARTISTS V2 - BLUEPRINT EDITION --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-deep: #020202;
    --text-white: #f0f0f0;
    --accent: #0055ff; 
    --grid-line: rgba(255, 255, 255, 0.05);
    --f-serif: 'Cinzel', serif;
    --f-mono: 'Space Mono', monospace;
    --f-sans: 'Inter', sans-serif;
}

body { background-color: var(--bg-deep); color: var(--text-white); font-family: var(--f-mono); margin: 0; }

.pl-page-container { 
    padding-top: 120px; min-height: 100vh; position: relative; z-index: 10; padding-bottom: 80px;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* IMPORT SHARED STYLES (COPY FROM RELEASES CSS IF NEEDED) */
/* --- NAVIGATION --- */
.pl-system-tabs-wrap { display: flex; justify-content: center; margin-bottom: 50px; }
.pl-system-tabs { display: inline-flex; background: rgba(20,20,20,0.8); border: 1px solid #333; border-radius: 30px; padding: 5px; backdrop-filter: blur(10px); }
.pl-tab-item { padding: 10px 25px; border-radius: 25px; font-family: var(--f-mono); font-size: 11px; color: #666; text-decoration: none; transition: 0.3s; }
.pl-tab-item.active, .pl-tab-item:hover { background: var(--accent); color: #fff; box-shadow: 0 0 15px rgba(0,85,255,0.4); }

.pl-vault-header { text-align: center; margin-bottom: 50px; }
.pl-vault-title { font-family: var(--f-serif); font-size: 60px; color: #fff; }

/* --- ARTIST GRID --- */
.pl-artist-grid-layout { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; 
    padding: 0 5vw; max-width: 1400px; margin: 0 auto; 
}

.pl-roster-card { 
    background: #0a0a0a; border: 1px solid #222; overflow: hidden; 
    transition: 0.3s; cursor: pointer; display: flex; flex-direction: column;
}
.pl-roster-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 85, 255, 0.1); }

.pl-roster-visual { 
    height: 350px; overflow: hidden; position: relative; width: 100%; border-bottom: 1px solid #222;
}
.pl-roster-visual img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; filter: grayscale(100%); }
.pl-roster-card:hover img { transform: scale(1.05); filter: grayscale(0%); }

.pl-roster-overlay { 
    position: absolute; inset: 0; background: linear-gradient(to top, #050505 10%, transparent); 
    display: flex; align-items: flex-end; padding: 20px;
}

.pl-roster-name { 
    font-family: var(--f-serif); font-size: 32px; margin: 0 0 10px; color: #fff; 
    line-height: 1; text-transform: uppercase; text-shadow: 0 2px 10px #000;
}

.pl-roster-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }

.pl-roster-role { 
    font-family: var(--f-mono); font-size: 10px; 
    border: 1px solid var(--accent); color: var(--accent); 
    padding: 4px 10px; border-radius: 20px; align-self: flex-start; margin-bottom: 15px; 
}

.pl-roster-bio { 
    font-family: var(--f-sans); font-size: 13px; color: #777; 
    line-height: 1.6; margin-bottom: 25px; 
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.pl-btn-roster { 
    margin-top: auto; padding: 12px; width: 100%; background: transparent; 
    border: 1px solid #333; color: #fff; font-family: var(--f-mono); 
    font-size: 11px; cursor: pointer; transition: 0.2s; text-transform: uppercase;
}
.pl-btn-roster:hover { background: var(--accent); border-color: var(--accent); }

/* --- POPUP STYLES (REQUIRED FOR ARTIST TOO) --- */
.pl-fs-modal { position: fixed; inset: 0; z-index: 99999; background: rgba(5,5,5,0.98); backdrop-filter: blur(15px); opacity: 0; visibility: hidden; transition: 0.3s; overflow-y: auto; }
.pl-fs-modal.active { opacity: 1; visibility: visible; }
.pl-fs-close { position: fixed; top: 20px; right: 20px; width: 45px; height: 45px; border: 1px solid var(--accent); background: #000; color: var(--accent); z-index: 100; transition: 0.3s; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 20px; }
.pl-fs-close:hover { background: var(--accent); color: #fff; }
.pl-fs-content { min-height: 100%; padding: 60px 20px; display: flex; align-items: center; justify-content: center; }
.pl-pop-split { display: grid; grid-template-columns: 350px 1fr; gap: 50px; width: 100%; max-width: 1200px; }
.pl-pop-cover img { width: 100%; border-radius: 8px; border: 1px solid #333; }
.pl-pop-header h1 { font-family: var(--f-serif); font-size: 40px; margin: 0 0 20px; color: #fff; }
.pl-pop-desc { font-family: var(--f-sans); font-size: 14px; color: #999; line-height: 1.6; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .pl-page-container { padding-top: 80px; }
    .pl-vault-title { font-size: 40px; }

    /* Grid 1 Column */
    .pl-artist-grid-layout { grid-template-columns: 1fr; gap: 25px; padding: 0 20px; }

    /* Compact Card */
    .pl-roster-visual { height: 280px; }
    .pl-roster-info { padding: 20px; }
    .pl-roster-name { font-size: 24px; }
    .pl-btn-roster { padding: 15px; }

    /* Popup */
    .pl-fs-content { align-items: flex-start; padding-top: 80px; }
    .pl-pop-split { grid-template-columns: 1fr; gap: 30px; display: flex; flex-direction: column; }
    .pl-pop-cover { width: 200px; margin: 0 auto; }
}