:root {
    --bg-charcoal: #0f0f0f;
    --panel-dark: #1a1a1a;
    --panel-raised: #252525;
    --text-off-white: #e8e8e8;
    --text-light-gray: #b0b0b0;
    --accent-amber: #ff8c00;
    --accent-teal: #4a9b8e;
    --accent-white: #f5f5f5;
    
    /* Tactical Interface Colors */
    --tactical-black: #000000;
    --tactical-amber: #f59e0b;
    --tactical-amber-dark: #92400e;
    --tactical-zinc-50: #fafafa;
    --tactical-zinc-100: #f4f4f5;
    --tactical-zinc-200: #e4e4e7;
    --tactical-zinc-400: #a1a1aa;
    --tactical-zinc-700: #3f3f46;
    --tactical-zinc-800: #27272a;
    --tactical-zinc-900: #18181b;
    --tactical-zinc-950: #09090b;
    
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(255, 140, 0, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at center, #001a33 0%, #000a1a 100%);
    color: #FFB000;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(0, 10, 26, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 176, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #FFB000;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.nav-logo:hover {
    color: var(--text-light-gray);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #FFB000;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-amber);
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: #FFB000;
    opacity: 0.8;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #FFB000;
}

.nav-link.active::after {
    width: 100%;
}

/* Home Page */
.home-main {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-container {
    max-width: 800px;
    width: 100%;
    padding: 4rem 2rem;
    text-align: center;
}

.home-symbol {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.symbol-surface {
    width: auto;
    max-width: 300px;
    height: auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.98);
        opacity: 0.95;
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

.home-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFB000;
}

.home-status {
    font-size: 1rem;
    font-weight: 400;
    color: #FFB000;
    letter-spacing: 0.05em;
}

/* Music Page */
.music-main {
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.music-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFB000;
}

.producers-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.producers-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.producers-header-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.producers-website-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 4px;
    color: #FFB000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: fit-content;
}

.producers-website-button svg {
    stroke: #FFB000;
    transition: transform 0.3s ease;
}

.producers-website-button:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
}

.producers-website-button:hover svg {
    transform: rotate(15deg);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.release-tile {
    aspect-ratio: 1;
}

.release-surface {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--panel-raised) 0%, var(--panel-dark) 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.release-surface:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.release-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.release-surface:hover .release-overlay {
    opacity: 1;
}

.release-info {
    width: 100%;
}

.release-title {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB000;
    margin-bottom: 0.5rem;
}

.release-year {
    font-size: 0.875rem;
    color: #FFB000;
    margin-bottom: 0.75rem;
}

.release-status {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-amber);
}

.release-link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.release-view-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--accent-amber);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.release-surface:hover .release-view-details {
    opacity: 1;
    transform: translateY(0);
}

.release-view-details svg {
    stroke: var(--accent-amber);
}

/* Band Page */
.band-main {
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.band-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.system-content {
    margin-top: 3rem;
}

.system-panel {
    background: linear-gradient(135deg, var(--panel-raised) 0%, var(--panel-dark) 100%);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.system-section {
    margin-bottom: 3rem;
}

.system-section:last-child {
    margin-bottom: 0;
}

.system-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFB000;
    margin-bottom: 1.5rem;
}

.system-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #FFB000;
    font-weight: 300;
}

/* Producers Page */
.producers-main {
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.producers-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.producers-content {
    margin-top: 3rem;
}

.producers-panel {
    background: linear-gradient(135deg, var(--panel-raised) 0%, var(--panel-dark) 100%);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.producers-section {
    margin-bottom: 3.5rem;
}

.producers-section:last-child {
    margin-bottom: 0;
}

.producers-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFB000;
    margin-bottom: 1.5rem;
}

.producers-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #FFB000;
    font-weight: 300;
}

/* Manifesto Page */
.manifesto-main {
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.manifesto-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.manifesto-content {
    margin-top: 3rem;
}

.manifesto-panel {
    background: linear-gradient(135deg, var(--panel-raised) 0%, var(--panel-dark) 100%);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.manifesto-statements {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.statement {
    position: relative;
    padding-left: 1.5rem;
}

.statement::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-light-gray);
    opacity: 0.3;
}

.statement-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #FFB000;
    font-weight: 300;
}

.statement-signature {
    margin-top: 1rem;
    padding-left: 0;
}

.statement-signature::before {
    display: none;
}

.statement-signature .statement-text {
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB000;
}

/* Operational System Page */
.operational-main {
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.operational-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.operational-content {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.operational-content-columns {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.operational-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.operational-right {
    position: sticky;
    top: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ops-dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 176, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 10, 26, 0.5);
    opacity: 0.9;
}

.system-top-image {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.system-dashboard-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 176, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 10, 26, 0.5);
    opacity: 0.9;
}

.system-section-panel {
    background: linear-gradient(135deg, var(--panel-raised) 0%, var(--panel-dark) 100%);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.system-section-header {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFB000;
    margin-bottom: 1rem;
}

.system-section-text {
    font-size: 0.9rem;
    color: #FFB000;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Role Details */
.roles-detailed {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.role-detail {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.role-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.role-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.role-color-indicator {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.role-detail-name {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFB000;
}

.role-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

.role-specs li {
    font-size: 0.875rem;
    color: #FFB000;
    font-weight: 300;
    position: relative;
    line-height: 1.6;
}

.role-specs li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--accent-amber);
    opacity: 0.4;
}

.role-meaning {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 176, 0, 0.05);
    border-left: 2px solid rgba(255, 176, 0, 0.4);
    border-radius: 4px;
}

.role-meaning-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB000;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.role-meaning-text {
    font-size: 0.875rem;
    color: #FFB000;
    font-weight: 300;
    line-height: 1.6;
}

.role-philosophy {
    font-size: 0.9rem;
    color: #FFB000;
    font-weight: 400;
    font-style: italic;
    padding-left: 1.75rem;
    border-left: 2px solid rgba(255, 176, 0, 0.3);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.role-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.role-name {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB000;
}

.role-color {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.role-hex {
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    color: #FFB000;
}

.role-meaning {
    font-size: 0.875rem;
    color: #FFB000;
    font-weight: 300;
    line-height: 1.5;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-item {
    font-size: 0.9rem;
    color: #FFB000;
    font-weight: 300;
}

.lighting-specs {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.lighting-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lighting-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lighting-role {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB000;
}

.lighting-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #FFB000;
    font-weight: 300;
}

.lighting-note {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 176, 0, 0.1);
    color: #FFB000;
    font-style: italic;
}

.cover-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.spec-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB000;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #FFB000;
    font-weight: 300;
}

.spec-list.forbidden {
    color: rgba(177, 18, 38, 0.8);
}

.spec-note {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 176, 0, 0.1);
    color: #FFB000;
    font-style: italic;
}

.sequence-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    position: relative;
}

.timeline-time {
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    color: #FFB000;
    text-align: right;
}

.timeline-event {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-title {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB000;
}

.timeline-details {
    font-size: 0.9rem;
    color: #FFB000;
    font-weight: 300;
    line-height: 1.6;
}

.system-philosophy {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFB000;
    margin-bottom: 1.5rem;
}

.philosophy-text {
    font-size: 0.9rem;
    color: #FFB000;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-conclusion {
    font-size: 1rem;
    color: #FFB000;
    font-weight: 400;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-logo {
        font-size: 0.75rem;
    }

    .nav-links {
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 0.25rem 0;
    }

    .home-main {
        padding-top: 140px;
        padding-bottom: 2rem;
    }

    .home-container {
        padding: 2rem 1.5rem;
    }

    .home-symbol {
        margin-bottom: 3rem;
    }

    .symbol-surface {
        width: 100px;
        height: auto;
    }

    .home-title {
        font-size: 1.75rem;
        letter-spacing: 0.15em;
    }

    .home-status {
        font-size: 0.9rem;
    }

    .music-main,
    .band-main,
    .producers-main,
    .manifesto-main,
    .operational-main {
        padding-top: 140px;
        padding-bottom: 2rem;
    }

    .music-container,
    .band-container,
    .producers-container,
    .manifesto-container,
    .operational-container {
        padding: 0 1.5rem;
    }

    .operational-content-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .operational-right {
        position: static;
        order: -1;
    }

    .ops-dashboard-image {
        max-width: 500px;
    }

    .system-dashboard-image {
        max-width: 500px;
    }

    .page-header {
        margin-bottom: 2.5rem;
    }

    .page-title {
        font-size: 1.25rem;
    }

    .producers-header-content {
        gap: 1.5rem;
    }

    .producers-logo {
        max-width: 180px;
    }

    .producers-website-button {
        font-size: 0.8125rem;
        padding: 0.6875rem 1.375rem;
    }

    .releases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .system-panel,
    .producers-panel,
    .manifesto-panel,
    .system-section-panel {
        padding: 1.75rem;
    }

    .system-label,
    .producers-label {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .system-text,
    .producers-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .manifesto-statements {
        gap: 1.75rem;
    }

    .statement-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .roles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .role-color {
        height: 50px;
    }

    .system-section-header {
        font-size: 0.9rem;
    }

    .system-section-text {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .lighting-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }

    .lighting-role {
        font-size: 0.8rem;
    }

    .lighting-details {
        font-size: 0.85rem;
    }

    .cover-specs {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        grid-template-columns: 45px 1fr;
        gap: 1.25rem;
    }

    .timeline-time {
        font-size: 0.8rem;
    }

    .timeline-title {
        font-size: 0.8rem;
    }

    .timeline-details {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.875rem 1rem;
    }

    .nav-logo {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
        min-height: 32px;
        display: flex;
        align-items: center;
    }

    .home-main {
        padding-top: 160px;
    }

    .home-container {
        padding: 1.5rem 1rem;
    }

    .home-symbol {
        margin-bottom: 2.5rem;
    }

    .symbol-surface {
        width: 80px;
        height: auto;
    }

    .home-title {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
        line-height: 1.2;
    }

    .home-status {
        font-size: 0.85rem;
    }

    .music-main,
    .band-main,
    .producers-main,
    .manifesto-main,
    .operational-main {
        padding-top: 160px;
        padding-bottom: 1.5rem;
    }

    .music-container,
    .band-container,
    .producers-container,
    .manifesto-container,
    .operational-container {
        padding: 0 1rem;
    }

    .operational-content-columns {
        gap: 1.5rem;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
    }

    .producers-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .producers-logo {
        max-width: 150px;
    }

    .producers-header-text {
        width: 100%;
    }

    .producers-website-button {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
    }

    .releases-grid {
        gap: 1.25rem;
    }

    .system-panel,
    .producers-panel,
    .manifesto-panel,
    .system-section-panel {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .system-section-header {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .system-section-text {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .system-label,
    .producers-label {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .system-text,
    .producers-text,
    .manifesto-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .manifesto-statements {
        gap: 1.5rem;
    }

    .statement {
        padding-left: 1rem;
    }

    .statement-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .roles-grid {
        gap: 1.25rem;
    }

    .role-name {
        font-size: 0.8rem;
    }

    .role-color {
        height: 45px;
    }

    .role-hex {
        font-size: 0.7rem;
    }

    .role-meaning {
        font-size: 0.8rem;
    }

    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .timeline-time {
        font-size: 0.75rem;
    }

    .timeline-title {
        font-size: 0.75rem;
    }

    .timeline-details {
        font-size: 0.8rem;
    }

    .philosophy-text {
        font-size: 0.85rem;
    }

    .philosophy-conclusion {
        font-size: 0.9rem;
    }
}

/* Tactical Interface Homepage Styles */
body.tactical-interface {
    background: radial-gradient(circle at center, #001a33 0%, #000a1a 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #FFB000;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Images */
.background-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-image {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.15;
    mix-blend-mode: screen;
}

.bg-image-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: center top;
}

.bg-image-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: center bottom;
}

/* Scanner Line Animation */
.scanner-line {
    position: fixed;
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom, transparent, var(--tactical-amber), transparent);
    animation: scan 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 150;
}

@keyframes scan {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Tactical Header */
.tactical-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    border-bottom: 1px solid rgba(255, 176, 0, 0.2);
    background-color: rgba(0, 10, 26, 0.8);
    backdrop-filter: blur(24px);
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 10, 26, 0.5);
}

.tactical-header-content {
    max-width: 100%;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tactical-logo-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tactical-icon-link {
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.tactical-icon-link:hover {
    opacity: 0.8;
}

.tactical-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tactical-icon-box .icon-activity {
    color: var(--tactical-amber);
    animation: soft-pulse 8s ease-in-out infinite;
}

.icon-box-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(245, 158, 11, 0.4);
    border-style: solid;
    border-width: 0;
}

.icon-box-corner-tl {
    top: -1px;
    left: -1px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.icon-box-corner-br {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.tactical-title-group {
    display: flex;
    flex-direction: column;
}

.tactical-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #FFB000;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 0 8px rgba(255, 176, 0, 0.3);
}

.tactical-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.125rem;
}

.subtitle-line {
    height: 1px;
    width: 32px;
    background: rgba(245, 158, 11, 0.3);
}

.subtitle-text {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #FFB000;
    font-weight: 700;
}

.tactical-header-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.tactical-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.time-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--tactical-zinc-700);
}

.time-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    color: #FFB000;
    letter-spacing: 0.2em;
}

/* Tactical Main Layout */
.tactical-main {
    display: flex;
    min-height: 100vh;
    padding-top: 64px;
    position: relative;
    z-index: 1;
}

/* Tactical Sidebar */
.tactical-sidebar {
    width: 64px;
    border-right: 1px solid rgba(255, 176, 0, 0.2);
    background: rgba(0, 10, 26, 0.6);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 0;
    gap: 3rem;
    position: fixed;
    left: 0;
    top: 64px;
    bottom: 0;
    z-index: 50;
}

.tactical-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
}

.tactical-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 4px;
    color: #FFB000;
    text-decoration: none;
    transition: all 1s ease;
    cursor: pointer;
    width: 48px;
    height: 48px;
}

.tactical-nav-item svg {
    stroke-width: 1.5;
    transition: transform 2s ease, stroke-width 1s ease;
}

.tactical-nav-item:hover {
    color: #FFB000;
    background: rgba(255, 176, 0, 0.1);
    opacity: 0.8;
}

.tactical-nav-item:hover svg {
    transform: scale(1.1);
    stroke-width: 2;
}

.nav-label {
    position: absolute;
    left: calc(100% + 1rem);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.4375rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 1s ease, transform 1s ease;
    pointer-events: none;
    background: rgba(0, 10, 26, 0.95);
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 176, 0, 0.3);
    border-radius: 2px;
    color: #FFB000;
}

.tactical-nav-item:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
}

.tactical-sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon-globe {
    color: var(--tactical-zinc-800);
    animation: rotate-slow 30s linear infinite;
}

.sidebar-divider {
    height: 128px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.3), transparent);
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes soft-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

/* Tactical Content Area */
.tactical-content {
    flex: 1;
    margin-left: 64px;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.home-center {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.home-center .home-symbol {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-center .symbol-surface {
    width: auto;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.home-center .home-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFB000;
}

.home-center .home-status {
    font-size: 1rem;
    font-weight: 400;
    color: #FFB000;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

/* Site Footer */
.site-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 0;
    background: rgba(0, 10, 26, 0.6);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 176, 0, 0.1);
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #FFB000;
    font-family: 'Inter', sans-serif;
}

.footer-content a {
    color: #FFB000;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-content a:hover {
    color: var(--accent-amber);
    border-bottom-color: rgba(255, 140, 0, 0.5);
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
}

/* Responsive for Tactical Interface */
/* Release Detail Page Styles */
.release-detail-container {
    max-width: 1000px;
    width: 100%;
    padding: 2rem;
    background: rgba(0, 10, 26, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-amber);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-family: 'JetBrains Mono', monospace;
    transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
    opacity: 0.7;
}

.breadcrumb-link svg {
    stroke: var(--accent-amber);
}

.release-header {
    margin-bottom: 3rem;
}

.release-detail-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFB000;
    margin-bottom: 1.5rem;
}

.release-metadata {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace;
}

.release-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.65rem;
    color: #FFB000;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.meta-value {
    font-size: 0.875rem;
    color: #FFB000;
    font-weight: 500;
}

.meta-value.status-active {
    color: var(--accent-amber);
}

.release-meta-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
}

.release-artwork-panel {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.4) 0%, rgba(24, 24, 27, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.release-artwork {
    width: 100%;
    height: auto;
    display: block;
}

.release-section {
    margin-bottom: 3rem;
}

.release-section-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-amber);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.release-section-description {
    font-size: 0.9rem;
    color: #FFB000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.track-listing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.3) 0%, rgba(24, 24, 27, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.track-item:hover {
    border-color: rgba(255, 140, 0, 0.2);
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.5) 0%, rgba(24, 24, 27, 0.5) 100%);
}

.track-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-amber);
    opacity: 0.6;
    min-width: 40px;
}

.track-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-title {
    font-size: 1rem;
    color: #FFB000;
    font-weight: 400;
}

.track-duration {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #FFB000;
    opacity: 0.7;
}

.release-total-time {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'JetBrains Mono', monospace;
}

.total-label {
    font-size: 0.75rem;
    color: #FFB000;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.total-value {
    font-size: 1rem;
    color: var(--accent-amber);
    font-weight: 600;
}

.roles-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.role-legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.role-legend-indicator {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.role-legend-name {
    font-size: 0.875rem;
    color: #FFB000;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.release-credits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credit-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.credit-line:last-child {
    border-bottom: none;
}

.credit-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #FFB000;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.credit-value {
    font-size: 0.9rem;
    color: #FFB000;
    font-weight: 400;
}

.release-notes-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.release-notes-text p {
    font-size: 0.9rem;
    color: #FFB000;
    line-height: 1.7;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 10, 26, 0.4) 0%, rgba(0, 5, 13, 0.4) 100%);
    border: 1px solid rgba(255, 176, 0, 0.3);
    border-radius: 4px;
    color: #FFB000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.streaming-link:hover {
    border-color: #FFB000;
    background: linear-gradient(135deg, rgba(0, 10, 26, 0.6) 0%, rgba(0, 5, 13, 0.6) 100%);
    box-shadow: 0 0 16px rgba(255, 176, 0, 0.2);
}

.streaming-link svg {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .tactical-sidebar {
        width: 56px;
    }

    .tactical-content {
        margin-left: 56px;
    }

    .tactical-title {
        font-size: 1.25rem;
    }

    .home-center .home-title {
        font-size: 2rem;
    }

    .release-detail-container {
        padding: 1rem;
    }

    .release-detail-title {
        font-size: 1.75rem;
    }

    .release-metadata {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .release-meta-divider {
        display: none;
    }

    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .track-info {
        width: 100%;
    }

    .roles-legend {
        flex-direction: column;
        gap: 1rem;
    }

    .streaming-links {
        flex-direction: column;
    }

    .streaming-link {
        width: 100%;
        justify-content: center;
    }
    
    .tactical-header-content {
        padding: 0 1rem;
    }
    
    .tactical-header-right {
        gap: 1.5rem;
    }

    .footer-content {
        padding: 0 1.5rem;
    }

    .footer-content span {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .tactical-sidebar {
        width: 48px;
    }
    
    .tactical-content {
        margin-left: 48px;
        padding: 1rem;
    }
    
    .tactical-nav-item {
        width: 40px;
        height: 40px;
        padding: 0.75rem;
    }
    
    .tactical-nav-item svg {
        width: 18px;
        height: 18px;
    }
    
    .tactical-title {
        font-size: 1rem;
    }
    
    .subtitle-text {
        font-size: 0.5rem;
    }
    
    .home-center .home-title {
        font-size: 1.5rem;
    }
    
    .tactical-icon-box {
        width: 40px;
        height: 40px;
    }
    
    .tactical-icon-box .icon-activity {
        width: 20px;
        height: 20px;
    }

    .site-footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-content span {
        font-size: 0.625rem;
        letter-spacing: 0.08em;
    }
}
