/* The Murphy Experiment - Futuristic Theme */
/* Palette: deep navy base, cyan/teal accents, inspired by background-texture.png */

:root {
    --bg:          #080d1a;
    --bg-panel:    rgba(8, 20, 40, 0.88);
    --bg-card:     rgba(10, 24, 48, 0.92);
    --cyan:        #00d4d4;
    --cyan-dim:    rgba(0, 212, 212, 0.15);
    --cyan-glow:   rgba(0, 212, 212, 0.4);
    --teal:        #0088aa;
    --teal-dim:    rgba(0, 136, 170, 0.15);
    --accent-red:  #ff4466;
    --text:        #c8e8ee;
    --text-dim:    rgba(200, 232, 238, 0.55);
    --text-bright: #e8f8ff;
    --border:      rgba(0, 212, 212, 0.3);
    --border-strong: rgba(0, 212, 212, 0.7);
    --nav-h:       55px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg) url('../media/background-texture.png') center/cover fixed;
    color: var(--text);
    overflow-x: hidden;
    padding-top: var(--nav-h);
}

/* Darkening overlay so text stays readable over the vivid texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 22, 0.72);
    pointer-events: none;
    z-index: 0;
}

/* All content sits above the overlay */
nav, header, section, footer, .audio-player-bar {
    position: relative;
    z-index: 1;
}

/* ============================================
   STICKY NAVIGATION
   ============================================ */

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(5, 12, 28, 0.95);
    border-bottom: 1px solid var(--border-strong);
    box-shadow: 0 0 20px var(--cyan-glow);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.site-nav.scrolled {
    background: rgba(5, 12, 28, 0.99);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.nav-logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--cyan);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--border-strong);
    padding: 4px 12px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--cyan);
    white-space: nowrap;
}

.nav-logo:hover {
    background: var(--cyan-dim);
    box-shadow: 0 0 12px var(--cyan-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-item { position: relative; }

.nav-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: var(--text);
    text-decoration: none;
    padding: 8px 14px;
    display: block;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--cyan);
    background: var(--cyan-dim);
    border-color: var(--border);
    text-shadow: 0 0 8px var(--cyan);
}

.nav-link.active {
    color: var(--cyan);
    border-bottom: 2px solid var(--cyan);
    text-shadow: 0 0 8px var(--cyan);
}

.nav-link.has-dropdown { padding-right: 22px; }

.nav-link.has-dropdown::after {
    content: '▼';
    font-size: 0.55rem;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
    color: var(--cyan);
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: translateY(-50%) rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%; left: 0;
    min-width: 180px;
    background: rgba(5, 12, 28, 0.98);
    border: 1px solid var(--border-strong);
    border-top: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 0 20px var(--cyan-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    list-style: none;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li { border-bottom: 1px solid var(--border); }
.nav-dropdown li:last-child { border-bottom: none; }
.nav-dropdown .nav-link { font-size: 0.75rem; padding: 10px 16px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: 1px solid var(--border);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cyan);
    transition: all 0.3s ease;
}

/* ============================================
   LOGO AND BRANDING
   ============================================ */

.logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--cyan), 0 0 50px var(--cyan), 0 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.archive-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 0.25em;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--border-strong);
    padding: 6px 20px;
    background: var(--cyan-dim);
    display: inline-block;
    text-shadow: 0 0 8px var(--cyan);
}

.section-label {
    font-family: 'IBM Plex Mono', monospace;
    text-align: left;
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan-glow);
    border-left: 2px solid var(--cyan);
    padding-left: 10px;
}

.page-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    color: var(--text);
    font-size: 1.6rem;
    font-style: italic;
    margin-top: 50px;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

/* ============================================
   HEADER LAYOUTS
   ============================================ */

header {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    background: transparent;
}

.page-header {
    padding: 60px 20px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header .archive-label { margin-bottom: 40px; }

.home-header {
    height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-header .archive-label { margin-bottom: 40px; }

/* ============================================
   STAMP CONTAINER — holographic treatment
   ============================================ */

.stamp-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.stamp-container .logo {
    font-size: 3.5rem;
    color: #ffffff;
    letter-spacing: 0.12em;
    transform: rotate(-2.5deg);
    border: 3px solid var(--cyan);
    outline: 2px solid rgba(0,212,212,0.3);
    outline-offset: 6px;
    padding: 25px 45px;
    opacity: 0.95;
    filter: url(#stamp-rough);
    text-align: center;
    line-height: 1.3;
    margin: 0;
    box-shadow: 0 0 30px var(--cyan-glow), inset 0 0 30px rgba(0,212,212,0.05);
    text-shadow: 0 0 25px var(--cyan), 0 0 50px rgba(0,212,212,0.4), 0 2px 4px rgba(0,0,0,0.9);
}

.logo-line { display: block; }

.postmark {
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translateY(-50%) rotate(12deg);
    width: 200px;
    height: 200px;
    border: 3px solid var(--teal);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--teal);
    filter: url(#stamp-rough);
    opacity: 0.8;
    text-shadow: 0 0 6px var(--teal);
    -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0.2) 100%);
    mask-image: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0.2) 100%);
}

.postmark::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 2px solid var(--teal);
    border-radius: 50%;
}

.postmark-text-top { font-size: 0.7rem; letter-spacing: 0.15em; margin-bottom: 2px; }
.postmark-date { font-size: 1.2rem; font-weight: 700; letter-spacing: 0.1em; }
.postmark-text-bottom { font-size: 0.65rem; letter-spacing: 0.1em; margin-top: 2px; }

/* ============================================
   HEADINGS
   ============================================ */

h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 25px;
    text-align: left;
    letter-spacing: 0.04em;
}

h2.centered { text-align: center; }

h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 20px;
    text-align: left;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    position: relative;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-first { padding-top: 20px; }
.content-column { max-width: 900px; margin: 0 auto; }

/* ============================================
   BODY TEXT
   ============================================ */

.body-text {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.85;
    text-align: left;
    margin-bottom: 25px;
}

.data-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: var(--teal);
    opacity: 0.7;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    text-align: left;
    letter-spacing: 0.08em;
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-button,
.back-link,
.social-link,
.prev-link,
.next-link,
.conclusion-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    background: transparent;
    border: 1px solid var(--cyan);
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    text-shadow: 0 0 8px var(--cyan);
    box-shadow: 0 0 10px var(--cyan-glow), inset 0 0 10px transparent;
    margin: 5px;
}

.cta-button:hover,
.back-link:hover,
.social-link:hover,
.prev-link:hover,
.next-link:hover,
.conclusion-link:hover {
    background: var(--cyan-dim);
    box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 15px var(--cyan-dim);
    color: var(--text-bright);
    transform: translateY(-1px);
}

.cta-button:active,
.back-link:active,
.social-link:active,
.prev-link:active,
.next-link:active,
.conclusion-link:active {
    transform: translateY(1px);
    box-shadow: 0 0 6px var(--cyan-glow);
}

.cta-button.new {
    color: var(--accent-red);
    border-color: var(--accent-red);
    text-shadow: 0 0 8px var(--accent-red);
    box-shadow: 0 0 10px rgba(255, 68, 102, 0.4);
    animation: pulse-glow-red 2s infinite;
}

.cta-button.new:hover {
    background: rgba(255, 68, 102, 0.1);
    box-shadow: 0 0 20px rgba(255, 68, 102, 0.6);
    color: #fff;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.button-group.centered { justify-content: center; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ============================================
   CONTENT BOXES
   ============================================ */

.content-box,
.about-content,
.profile-content,
.discovery-content {
    background: var(--bg-panel);
    padding: 40px;
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text);
    box-shadow: 0 0 30px rgba(0,0,0,0.5), 0 0 1px var(--cyan-glow);
}

.profile-content { padding: 60px 40px; }

.content-box.large-padding { padding: 60px 40px; }
.content-box.centered { text-align: center; }

.album-section {
    background: var(--bg-panel);
    padding: 60px 40px;
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(0,0,0,0.5), 0 0 1px var(--cyan-glow);
}

.album-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: 0.04em;
}

.album-title.centered { text-align: center; }

.album-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 30px;
    text-align: left;
}

.album-subtitle.centered { text-align: center; }

/* ============================================
   NOTES AND CALLOUTS
   ============================================ */

.artifact-note {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--teal-dim);
    border-left: 3px solid var(--teal);
    text-align: left;
}

.artifact-note strong { color: var(--cyan); }

.artifact-note.urgent {
    background: rgba(255, 68, 102, 0.07);
    border-left: 4px solid var(--accent-red);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.artifact-note.urgent strong { color: var(--accent-red); }

.evidence-note {
    background: var(--cyan-dim);
    border-left: 5px solid var(--cyan);
    padding: 25px;
    margin: 30px 0;
}

/* ============================================
   ALERT BOXES
   ============================================ */

.urgent-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 40px;
    margin: 30px 0;
}

.urgent-box h3 {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    opacity: 0.75;
}

.breaking-news {
    background: rgba(255, 68, 102, 0.07);
    border: 1px solid var(--accent-red);
    padding: 30px;
    margin-bottom: 40px;
    animation: pulse-border-red 3s infinite;
}

/* ============================================
   BIO PAGES
   ============================================ */

.revelation-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 30px;
    margin: 30px 0;
}

.revelation-box h3 {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    opacity: 0.75;
}

.character-image {
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px var(--cyan-glow);
    border: 1px solid var(--border);
    margin: 20px auto;
    display: block;
}

.profile-content .body-text {
    line-height: 1.5;
    margin-bottom: 12px;
}

.profile-content .mb-20 {
    margin-bottom: 10px;
}

.profile-content h2 {
    margin-bottom: 6px;
}

.revelation-intro {
    font-style: italic;
    margin-top: 15px;
}

.character-alias {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 20px 0;
    color: var(--text-bright);
    letter-spacing: 0.15em;
    text-align: center;
}

.navigation-box-label {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text);
    opacity: 0.6;
}

.navigation-box-label.cyan {
    color: var(--cyan);
    opacity: 1;
}

/* Conclusion page */
.urgent-box.cyan {
    border-color: var(--cyan);
    background: var(--cyan-dim);
}

.urgent-box.cyan h3 {
    color: var(--cyan);
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    opacity: 1;
}

.confirmation-statement {
    font-weight: bold;
    font-size: 1.3rem;
    margin: 25px 0;
    line-height: 1.8;
    color: var(--cyan);
}

.banner-image.strong-border { border-color: var(--border-strong); }

.case-summary-text {
    line-height: 1.8;
    font-size: 1.05rem;
}

.subject-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.9rem;
}

.subject-table td:first-child {
    color: var(--text-dim);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    padding: 4px 8px 4px 0;
    width: 40%;
    white-space: nowrap;
    vertical-align: top;
}

.subject-table td:last-child { color: var(--text); }

.signature-credit { color: var(--accent-red); }

/* Shapes page */
.urgent-statement {
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.8;
}

.note-heading {
    font-weight: bold;
    color: var(--cyan);
    margin-bottom: 15px;
    font-style: normal;
}

.status-heading {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-red);
    text-align: center;
}

.lh-18 { line-height: 1.8; }

.mono-note {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-dim);
    font-size: 0.82rem;
}

.mono-note.small { font-size: 0.75rem; }

/* Layout/footer */
.data-tag.no-rule {
    border-top: none;
    padding-top: 0;
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
}

/* The Band page */
#members .section-label,
#members h2 { text-align: center; }

.navigation-box {
    background: var(--cyan-dim);
    border: 1px solid var(--border);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

/* ============================================
   GRIDS AND CARDS
   ============================================ */

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.content-card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.content-card.placeholder {
    background: rgba(8, 20, 40, 0.6);
    border: 1px dashed rgba(0, 212, 212, 0.2);
    opacity: 0.7;
}

.info-card {
    background: var(--bg-card);
    padding: 24px;
    border: 1px solid var(--border);
}

.info-card h3,
.info-card h4 {
    color: var(--cyan);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    text-shadow: 0 0 6px var(--cyan);
}

.info-card p { color: var(--text); line-height: 1.6; }

.members {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 280px));
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.member-card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.member-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 0 25px var(--cyan-glow);
}

.member-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 10px;
}

.member-role { color: var(--text-dim); font-size: 0.95rem; }

/* ============================================
   VIDEO COMPONENTS
   ============================================ */

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    border: 1px solid var(--border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.placeholder-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: repeating-linear-gradient(45deg, rgba(0,212,212,0.04), rgba(0,212,212,0.04) 10px, rgba(0,212,212,0.02) 10px, rgba(0,212,212,0.02) 20px);
    border: 1px solid rgba(0, 212, 212, 0.2);
}

.placeholder-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--cyan);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 8px var(--cyan);
}

.video-title {
    font-size: 1.4rem;
    color: var(--text-bright);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.content-card.placeholder .video-title {
    color: var(--text-dim);
    opacity: 0.7;
}

.video-code {
    text-align: center;
    font-size: 0.72rem;
    color: var(--cyan);
    letter-spacing: 0.12em;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    text-shadow: 0 0 6px var(--cyan);
}

/* ============================================
   STATUS BADGES
   ============================================ */

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    margin-left: 10px;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
}

.status-badge.available {
    background: rgba(0, 212, 212, 0.1);
    color: var(--cyan);
    border: 1px solid var(--cyan);
}

.status-badge.pending {
    background: rgba(255, 68, 102, 0.1);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

/* ============================================
   TRACKLIST
   ============================================ */

.tracklist {
    background: var(--bg-panel);
    padding: 30px;
    border: 1px solid var(--border);
    margin-top: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(0, 212, 212, 0.1);
    transition: all 0.2s;
}

.track:last-child { border-bottom: none; }

.track:hover {
    background: var(--cyan-dim);
    padding-left: 20px;
}

.track-number {
    font-weight: 700;
    color: var(--teal);
    min-width: 40px;
    font-family: 'IBM Plex Mono', monospace;
}

.track-title { flex: 1; color: var(--text); font-weight: 600; }

.track-duration {
    color: var(--text-dim);
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 5, 15, 0.96);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
    padding: 20px;
}

.lightbox-modal.active { display: flex; }

.lightbox-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto; height: auto;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px var(--cyan-glow);
    border: 1px solid var(--border);
}

.lightbox-close {
    position: absolute;
    top: -40px; right: 0;
    color: var(--cyan);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 212, 212, 0.1);
    border: 1px solid var(--cyan);
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-shadow: 0 0 8px var(--cyan);
}

.lightbox-close:hover {
    background: var(--cyan-dim);
    transform: rotate(90deg);
    box-shadow: 0 0 15px var(--cyan-glow);
}

/* ============================================
   IMAGES
   ============================================ */

.image-clickable {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.image-clickable img { transition: all 0.3s; }

.image-clickable:hover img {
    transform: scale(1.03);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.image-clickable::after {
    content: '🔍 Click to enlarge';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 5, 15, 0.85);
    color: var(--cyan);
    padding: 6px 14px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border: 1px solid var(--border);
    white-space: nowrap;
}

.image-clickable:hover::after { opacity: 1; }

.image-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 10px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.05em;
}

.bordered-image {
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
}

.banner-image {
    max-width: 100%;
    width: 100%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6), 0 0 20px var(--cyan-glow);
    border: 1px solid var(--border-strong);
    margin: 30px 0;
    display: block;
}

.comic-frame {
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    margin: 30px auto;
    display: block;
}

/* ============================================
   INDEX PAGE SPECIFIC
   ============================================ */

.tagline {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 5px;
    font-style: italic;
}

.genre {
    font-size: 1rem;
    color: var(--cyan);
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    text-shadow: 0 0 8px var(--cyan);
}

.location {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.05em;
}

.case-number {
    font-size: 1rem;
    color: var(--accent-red);
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-family: 'IBM Plex Mono', monospace;
    text-shadow: 0 0 8px var(--accent-red);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--cyan);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 6px var(--cyan);
}

.album-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.album-header img {
    max-width: 550px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px var(--cyan-glow);
    border: 1px solid var(--border);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
    margin-top: 80px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.85); } to { transform: scale(1); } }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes pulse-glow-red {
    0%, 100% { box-shadow: 0 0 8px rgba(255,68,102,0.3); }
    50% { box-shadow: 0 0 20px rgba(255,68,102,0.7); }
}
@keyframes pulse-border-red {
    0%, 100% { border-color: var(--accent-red); }
    50% { border-color: rgba(255, 68, 102, 0.4); }
}
@keyframes pulse-border {
    0%, 100% { border-color: var(--border-strong); }
    50% { border-color: var(--cyan); }
}
@keyframes pulse-glow-folder {
    0%, 100% { box-shadow: 0 0 8px var(--cyan-glow); }
    50% { box-shadow: 0 0 20px var(--cyan-glow); }
}
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-italic { font-style: italic; }
.text-bold { font-weight: bold; }
.text-urgent { color: var(--accent-red); }
.text-muted { opacity: 0.6; }

.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.centered { text-align: center; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(5, 12, 28, 0.99);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-strong);
        box-shadow: 0 8px 30px rgba(0,0,0,0.6);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-toggle { display: flex; }
    .nav-item { width: 100%; }
    .nav-link { padding: 12px 16px; border-bottom: 1px solid var(--border); }
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--cyan);
        margin-left: 16px;
        background: rgba(0, 212, 212, 0.04);
    }
}

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

@media (max-width: 768px) {
    .logo { font-size: 2rem; }
    .stamp-container .logo { font-size: 2.2rem; padding: 18px 30px; }
    .postmark { width: 140px; height: 140px; right: -60px; }
    .postmark-date { font-size: 1rem; }
    .postmark-text-top, .postmark-text-bottom { font-size: 0.55rem; }
    .page-subtitle { font-size: 1.3rem; margin-top: 40px; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    .album-title { font-size: 1.8rem; }
    .members { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .about-content, .profile-content, .content-box { padding: 25px; }
    .content-column { max-width: 100%; }
    .cta-button, .back-link, .social-link, .prev-link, .next-link, .conclusion-link { font-size: 0.8rem; padding: 10px 18px; }
    .button-group { justify-content: center; }
    .track { flex-direction: column; align-items: flex-start; gap: 5px; }
    .lightbox-close { top: 10px; right: 10px; }
    .lightbox-modal { padding: 10px; }
    .nav-logo { font-size: 0.85rem; padding: 4px 8px; }
}
