/* Terminal Theme Stylesheet
 * Combined styles from index.cfm and us-data/index.cfm
 */

:root {
    --terminal-green: #00ff41;
    --terminal-green-dim: #00cc33;
    --terminal-amber: #ffb000;
    --terminal-cyan: #00d4ff;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --border-color: #00ff4133;
    --text-dim: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--terminal-green);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* CRT Scanline Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 1000;
}

/* CRT Flicker */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 999;
}

.terminal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Terminal Window Header */
.terminal-header {
    background: linear-gradient(180deg, #333 0%, #222 100%);
    border: 1px solid #444;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.btn-close { background: #ff5f56; }
.btn-min { background: #ffbd2e; }
.btn-max { background: #27ca3f; }

.terminal-title {
    color: #888;
    font-size: 0.75rem;
    margin-left: auto;
    margin-right: auto;
    font-family: 'IBM Plex Mono', monospace;
}

/* Top Card - Profile (index.cfm) */
.topcard {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0 0 4px 4px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-end;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1), inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.profile-image {
    flex: 0 0 180px;
}

.profile-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 2px solid var(--terminal-green);
    filter: grayscale(40%) contrast(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.profile-info {
    flex: 1;
    min-width: 200px;
}

.profile-info h1 {
    font-family: 'VT323', monospace;
    font-size: 2.5rem;
    color: var(--terminal-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.profile-info h2 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--terminal-amber);
}

.profile-info h2 small {
    color: var(--text-dim);
    font-size: 0.875rem;
}

/* Blinking Cursor */
.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background: var(--terminal-green);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Contact Card */
.contact-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--terminal-cyan);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--terminal-amber);
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--terminal-cyan);
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-item a:hover {
    color: var(--terminal-green);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

/* Section Header */
.section-header {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--terminal-green-dim);
}

.section-header h3 {
    font-family: 'VT323', monospace;
    font-size: 1.75rem;
    color: var(--terminal-amber);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header h3::before {
    content: ">";
    color: var(--terminal-green);
}

/* Project Cards */
.project-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--terminal-green);
    border-radius: 0 4px 4px 0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-left-color: var(--terminal-amber);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
    transform: translateX(4px);
}

.project-card h4 {
    color: var(--terminal-green);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.project-card h4::before {
    content: "$ ";
    color: var(--terminal-amber);
}

.project-card p {
    color: #aaa;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.project-card p:empty {
    display: none;
}

.project-card hr {
    display: none;
}

/* Project Card Enhanced Layout */
.project-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, rgba(0, 255, 65, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.project-card .card-header h4 {
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
    font-family: 'VT323', monospace;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
}

.project-card .card-header h4 p {
    display: inline;
    font-size: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.card-header-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.loc-badge {
    font-family: 'VT323', monospace;
    font-size: 1.25rem;
    color: var(--terminal-green);
    background: rgba(0, 255, 65, 0.1);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--terminal-green);
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1;
}

.project-year {
    font-family: 'VT323', monospace;
    font-size: 1.25rem;
    color: var(--terminal-amber);
    background: rgba(255, 176, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--terminal-amber);
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1;
}

.archived-badge {
    font-family: 'VT323', monospace;
    font-size: 1.25rem;
    color: var(--text-dim);
    background: rgba(136, 136, 136, 0.1);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--text-dim);
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1;
}

.project-summary {
    color: var(--terminal-cyan) !important;
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
    padding-left: 0 !important;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.meta-label {
    color: var(--terminal-amber);
    white-space: nowrap;
    min-width: 140px;
}

.meta-label i {
    width: 16px;
    margin-right: 0.25rem;
}

.meta-value {
    color: #ccc;
    word-break: break-word;
}

.meta-value a {
    color: var(--terminal-cyan);
    text-decoration: none;
    transition: all 0.2s ease;
}

.meta-value a:hover {
    color: var(--terminal-green);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

@media (max-width: 600px) {
    .project-card .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .card-header-badges {
        width: 100%;
    }
    
    .meta-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .meta-label {
        min-width: auto;
    }
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.8rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--terminal-green-dim);
}

thead {
    background-color: rgba(0, 255, 65, 0.1);
}

th {
    color: var(--terminal-amber);
    font-weight: 500;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--terminal-green-dim);
    white-space: nowrap;
}

td {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
    color: #ccc;
}

tr:hover {
    background-color: rgba(0, 255, 65, 0.05);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Pre/Code blocks */
pre, code {
    font-family: 'IBM Plex Mono', monospace;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--terminal-green-dim);
    border-radius: 4px;
    color: var(--terminal-cyan);
}

pre {
    padding: 1rem;
    overflow-x: auto;
    margin: 1rem 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    padding: 0.2rem 0.4rem;
    font-size: 0.85em;
}

pre code {
    padding: 0;
    border: none;
    background: transparent;
}

/* Divider */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--terminal-green-dim), transparent);
    margin: 2rem 0;
}

/* ASCII Art Header */
.ascii-header {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    color: var(--terminal-green-dim);
    white-space: pre;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    line-height: 1.2;
}

/* Main Content Card (us-data) */
.main-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0 0 4px 4px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1), inset 0 0 60px rgba(0, 0, 0, 0.3);
}

/* Section header variant for us-data (no top margin) */
.main-card .section-header {
    margin-top: 0;
}

/* Data Link Cards */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.data-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--terminal-green);
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.data-card:hover {
    border-left-color: var(--terminal-amber);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
    transform: translateX(4px);
}

.data-card a {
    display: block;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--terminal-green);
}

.data-card h4 {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    font-weight: 400;
}

.data-card h4::before {
    content: "$ ";
    color: var(--terminal-amber);
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--terminal-cyan);
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: var(--terminal-green);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

.back-link i {
    margin-right: 0.5rem;
}

/* Terminal container wide variant */
.terminal-container.wide {
    max-width: 95%;
    width: 95%;
}

/* Terminal container fullwidth variant */
.terminal-container.fullwidth {
    max-width: 100%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 1200px) {
    .terminal-container.wide {
        max-width: 1800px;
    }
}

/* Section header h1 variant */
.section-header h1 {
    font-family: 'VT323', monospace;
    font-size: 2rem;
    color: var(--terminal-amber);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header h1::before {
    content: ">";
    color: var(--terminal-green);
}

.section-header small {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    margin-left: 1.5rem;
}

/* Stats Summary */
.stats-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.5rem;
}

.stat-value {
    display: block;
    font-family: 'VT323', monospace;
    font-size: 1.75rem;
    color: var(--terminal-green);
    line-height: 1.2;
}

.stat-value small {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--terminal-amber);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* President Cards Grid */
.presidents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.president-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--terminal-green);
    border-radius: 0 4px 4px 0;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.president-card:hover {
    border-left-color: var(--terminal-amber);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
    transform: translateX(4px);
}

.president-photo {
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.president-number {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--terminal-green);
    color: var(--terminal-bg);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 1;
}

.president-number.republican {
    background: #e63946;
}

.president-number.democrat {
    background: #4361ee;
}

.president-number.democratic-republican {
    background: linear-gradient(135deg, #4361ee 50%, #e63946 50%);
}

.president-number.whig {
    background: #d4a017;
}

.president-number.federalist {
    background: #2c3e50;
}

.president-photo img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border: 2px solid var(--terminal-green);
    filter: grayscale(40%) contrast(1.1);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.president-card:hover .president-photo img {
    border-color: var(--terminal-amber);
}

.president-card h4 {
    color: var(--terminal-green);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.president-card h4::before {
    content: "$ ";
    color: var(--terminal-amber);
}

.president-card p {
    color: #aaa;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.president-card .label {
    color: var(--terminal-cyan);
}

.president-card .value {
    color: #ccc;
}

.president-card .edit-link {
    color: var(--terminal-amber);
    text-decoration: none;
    font-size: 0.8rem;
}

.president-card .edit-link:hover {
    color: var(--terminal-green);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

/* Crime page specific */
.data-card.safe {
    border-left-color: var(--terminal-green);
}

.data-card.danger {
    border-left-color: #ff4444;
}

/* Notes Section */
.notes-section {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--terminal-green-dim);
}

.notes-section h4 {
    font-family: 'VT323', monospace;
    font-size: 1.25rem;
    color: var(--terminal-cyan);
    margin-bottom: 0.75rem;
}

.notes-section h4::before {
    content: "# ";
    color: var(--terminal-green-dim);
}

.notes-section p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.notes-section a {
    color: var(--terminal-cyan);
    text-decoration: none;
}

.notes-section a:hover {
    color: var(--terminal-green);
    text-decoration: underline;
}

/* Chart Container */
.chart-container {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Data Table */
.data-table-container {
    margin-top: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.data-table thead {
    position: sticky;
    top: 0;
    background-color: var(--bg-card);
}

.data-table th {
    color: var(--terminal-amber);
    font-weight: 500;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--terminal-green-dim);
    white-space: nowrap;
}

.data-table td {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
    color: #ccc;
}

.data-table tr:hover {
    background-color: rgba(0, 255, 65, 0.05);
}

.data-table .number {
    text-align: right;
    font-family: 'IBM Plex Mono', monospace;
}

.data-table .positive,
.positive {
    color: var(--terminal-green);
}

.data-table .negative,
.negative {
    color: #ff4444;
}

/* Responsive */
@media (max-width: 600px) {
    .terminal-container {
        padding: 1rem;
    }

    .topcard {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .profile-image {
        flex: 0 0 120px;
    }

    .profile-image img {
        width: 120px;
        height: 120px;
    }

    .profile-info h1 {
        font-size: 1.75rem;
    }

    .contact-card {
        flex-direction: column;
        gap: 1rem;
    }

    .ascii-header {
        font-size: 0.4rem;
    }

    .main-card {
        padding: 1.5rem;
    }

    .data-grid {
        grid-template-columns: 1fr;
    }

    .presidents-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stats-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--terminal-cyan);
    border-radius: 0 4px 4px 0;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.stats-card:hover {
    border-left-color: var(--terminal-amber);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
    transform: translateX(4px);
}

.stats-card h4 {
    color: var(--terminal-amber);
    font-family: 'VT323', monospace;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.stats-card h4::before {
    content: "$ ";
    color: var(--terminal-green);
}

.stats-card p {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.stats-card .positive {
    color: var(--terminal-green);
}

.stats-card .negative {
    color: #ff4444;
}

/* Filter Controls */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.filter-select {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--terminal-green);
    padding: 0.5rem 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--terminal-green);
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

.filter-select option {
    background-color: var(--bg-dark);
    color: var(--terminal-green);
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--terminal-green);
    color: var(--terminal-green);
    padding: 0.5rem 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background-color: var(--terminal-green);
    color: var(--bg-dark);
}

.filter-btn.active {
    background-color: var(--terminal-green);
    color: var(--bg-dark);
}

.filter-input {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--terminal-green);
    padding: 0.5rem 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
}

.filter-input:focus {
    outline: none;
    border-color: var(--terminal-green);
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

.filter-input::placeholder {
    color: var(--text-dim);
}

/* Forms */
.terminal-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--terminal-cyan);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.form-group label::before {
    content: "> ";
    color: var(--terminal-green);
}

.form-control {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--terminal-green);
    padding: 0.75rem 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: var(--terminal-green);
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

.btn-submit {
    background-color: var(--terminal-green);
    border: none;
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--terminal-amber);
    box-shadow: 0 0 15px rgba(255, 176, 0, 0.4);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--terminal-cyan);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--terminal-green);
}

.breadcrumb span {
    color: var(--text-dim);
}

.breadcrumb span::before {
    content: " / ";
    color: var(--terminal-green-dim);
}

/* Page subtitle */
.page-subtitle {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--terminal-green-dim);
}

.footer-nav a {
    color: var(--terminal-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    color: var(--terminal-green);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

.footer-nav a i {
    margin-right: 0.5rem;
    color: var(--terminal-amber);
}

@media (max-width: 600px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
