/* Core Layout Properties & Terminal Design Variables */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-base: #060608;
    --bg-panel: #0d0d11;
    --border-color: #1a1a24;
    --text-dim: #7e7e96;
    --text-light: #ffffff;
    
    /* Strict Neon Hex Color Space Matrix */
    --neon-blue: #00f0ff;    /* Page: Home / Global */
    --neon-green: #39ff14;   /* Page: Interests */
    --neon-red: #ff0055;     /* Page: Work */
    --neon-yellow: #ffdf00;  /* Page: Contact */
    --neon-purple: #bf55ec;  /* Page: Blog Layout */
}

body {
    font-family: 'Fira Code', monospace;
    background-color: var(--bg-base);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem;
}

.workspace {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 750px;
    gap: 2rem;
}

/* Master Screen Console Output Window */
.content-display {
    position: relative;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-color);
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d1d6;
    margin-bottom: 1.25rem;
}

.dynamic-accent {
    color: var(--theme-color);
}

/* Inline System Images */
.inline-image-frame {
    width: 50%;
    max-width: 100%;
    margin: 1.5rem auto;
    border: 1px solid var(--border-color);
    background-color: var(--bg-panel);
    border-radius: 6px;
    overflow: hidden;
}

.inline-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Back Action Controls */
.nav-action-panel {
    margin-bottom: 0.5rem;
}

.back-btn {
    display: inline-block;
    background-color: #000000;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
    text-shadow: 0 0 5px var(--theme-color);
}

/* Shared Footer Architecture */
.site-footer {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-footer a {
    color: var(--text-dim);
    text-decoration: underline;
}

.site-footer a:hover {
    color: var(--text-light);
}

.disclaimer-hidden {
    opacity: 0.25;
    transition: opacity 0.2s ease;
}

.disclaimer-hidden:hover {
    opacity: 1.0;
}

@media (min-width: 768px) {
    body { padding: 4rem 2rem; }
    .content-display { padding: 3rem; }
}

/* Responsive Unified Logo Styling */
.brand-logo-container {
    width: 65px;               /* Controls the size of your logo */
    height: auto;
    margin: 0 auto 1.25rem auto; /* Centers the logo and adds a gap below it */
    color: var(--theme-color); /* Extracts active page neon color space */
    filter: drop-shadow(0 0 8px var(--theme-color));
    transition: color 0.3s ease, filter 0.3s ease;
}

.brand-logo-container svg {
    width: 100%;
    height: auto;
    display: block;
}