/* SECTION 115 MASTER STYLESHEET // v2.5 */
/* --- GLOBAL NAVIGATION STYLES --- */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.9); /* Slight transparency */
    border-bottom: 1px solid #111;
    z-index: 1000;
    box-sizing: border-box;
}

.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Increased vertical padding to 25px to accommodate a larger logo */
    padding: 25px 40px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #111;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-brand {
    display: flex;
    align-items: center;
    /* Try 40px first. If still too small, go to 50px */
    height: 40px; 
    text-decoration: none;
}

.nav-brand img {
    height: 100%;
    width: auto;
    /* Ensure the logo is sharp */
    image-rendering: -webkit-optimize-contrast; 
}
}
}

.nav-brand img:hover {
    opacity: 0.7;
}
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-size: 10px;
    letter-spacing: 2px;
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

.nav-item:hover, .nav-item.active {
    color: #f2add9;
}

/* Add padding to containers so they don't hide under the fixed nav */
.archive-container, .artists-wrapper {
    padding-top: 140px !important;
}
/* --- GLOBAL BRANDING --- */
body {
    background: #000;
    color: #f2add9;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- REUSABLE CONTAINERS --- */
.archive-container, .artists-wrapper {
    background: #000;
    color: #f2add9;
    padding: 100px 40px;
    border: 1px solid #111;
    text-align: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.meta-text, .meta-data { 
    color: #444; 
    font-size: 10px; 
    letter-spacing: 5px; 
    margin-bottom: 40px; 
    text-transform: uppercase;
}

.main-message, .page-title { 
    font-size: 28px; 
    line-height: 1.5; 
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f2add9;
    margin-bottom: 30px;
}

/* --- TERMINAL INPUTS & BUTTONS --- */
input {
    background: transparent;
    border: 1px solid #333;
    color: #f2add9;
    padding: 18px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    outline: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: 0.3s;
}
input:focus { border-color: #f2add9; }

button, .access-btn {
    background: #f2add9;
    border: none;
    color: #000;
    padding: 18px;
    width: 100%;
    max-width: 400px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 3px;
    transition: 0.3s;
    text-decoration: none;
    text-transform: uppercase;
}
button:hover, .access-btn:hover { opacity: 0.8; }

/* --- ARTIST GRID LAYOUT --- */
.artist-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.artist-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* --- IMAGE SIZING & GLITCH FIX --- */
.image-container {
    position: relative;
    border: 1px solid #1a1a1a;
    aspect-ratio: 4 / 5; /* This fixes the "huge image" issue */
    overflow: hidden;
    background: #050505;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the box without stretching */
    animation: signal-glitch 5s infinite;
    filter: grayscale(0%) contrast(110%);
}

.artist-card:hover img {
    animation: none;
    filter: grayscale(0%) contrast(100%);
}

@keyframes signal-glitch {
    0%, 80% { filter: grayscale(0%) contrast(100%); opacity: 1; }
    85%, 95% { filter: grayscale(100%) contrast(150%); opacity: 0.8; }
    100% { filter: grayscale(0%) contrast(100%); opacity: 1; }
}

.scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: rgba(242, 173, 217, 0.2);
    box-shadow: 0 0 10px #f2add9;
    animation: scan 4s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scan { 0% { top: 0%; } 100% { top: 100%; } }

/* Details Styling */
.detail-header { display: flex; justify-content: space-between; margin-bottom: 25px; font-size: 10px; }
.status-indicator { color: #00ff00; letter-spacing: 2px; }
.status-indicator.inactive { color: #444; }
.name { font-size: 32px; color: #fff; margin: 0 0 15px 0; letter-spacing: 4px; }
.description { color: #666; font-size: 13px; line-height: 1.8; margin-bottom: 30px; }
.stats-table { border-top: 1px solid #111; margin-bottom: 30px; }
.stat-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #111; font-size: 11px; }
.stat-row span:first-child { color: #333; }

/* Responsive */
@media (max-width: 768px) {
    .artist-card { grid-template-columns: 1fr; gap: 40px; }
    .archive-container, .artists-wrapper { padding: 60px 20px; }
}