@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Barlow+Condensed:wght@300;400;600;700&family=Exo+2:wght@300;400;600;700&display=swap');

:root {
    --bg-primary:     #0d1117;
    --bg-secondary:   #131920;
    --bg-panel:       #161d26;
    --bg-card:        #1a2230;
    --bg-elevated:    #1f2a3a;

    --metal-dark:     #1c2733;
    --metal-mid:      #253347;
    --metal-light:    #2e4060;
    --metal-trim:     #3a506b;

    --accent-amber:   #f0a500;
    --accent-orange:  #e05c00;
    --accent-cyan:    #00d4ff;
    --accent-green:   #00e676;
    --accent-red:     #ff3d3d;

    --text-primary:   #e8edf5;
    --text-secondary: #8fa3ba;
    --text-muted:     #4a6080;
    --text-mono:      #a8c4d8;

    --border-dim:     #243447;
    --border-mid:     #2e4a66;
    --border-bright:  #3d6b8c;

    --glow-amber:     0 0 8px rgba(240,165,0,0.4);
    --glow-cyan:      0 0 8px rgba(0,212,255,0.35);
    --glow-green:     0 0 8px rgba(0,230,118,0.35);

    --font-display:   'Barlow Condensed', sans-serif;
    --font-body:      'Exo 2', sans-serif;
    --font-mono:      'Share Tech Mono', monospace;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { overflow-y: scroll !important; scroll-behavior: smooth; }
html, body, div, article { word-wrap: break-word; overflow-x: hidden; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Dot grid overlay */
body::before {
    content: '';
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0,212,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none; z-index: -1;
}

a { color: var(--accent-cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-amber); text-decoration: none; }
:focus { outline: 1px solid var(--accent-amber); outline-offset: 2px; }

img { max-width: 100%; height: auto; vertical-align: text-top; }
form { font-size: 14px; }
h3 { padding-bottom: 4px; font-family: var(--font-display); letter-spacing: 0.05em; }
hr { border: none; border-top: 1px solid var(--border-dim); margin: 8px 0; }
p { margin-bottom: 4px; }
p:last-child { margin-bottom: 0; }

textarea {
    width: 100%; resize: vertical;
    background: var(--bg-elevated); color: var(--text-primary);
    border: 1px solid var(--border-mid); border-radius: 0;
    padding: 6px; margin-bottom: 3px;
    font-family: var(--font-body); font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
textarea:focus { border-color: var(--accent-cyan); box-shadow: var(--glow-cyan); outline: none; }

ul { padding-left: 20px; }
input, select {
    border: 1px solid var(--border-mid); border-radius: 0;
    padding: 3px 6px;
    background: var(--bg-elevated); color: var(--text-primary);
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--metal-trim); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan); }
::selection { color: var(--bg-primary); background: var(--accent-cyan); }

/* ── Spacing helpers (keep Bootstrap compat) ──────────────── */
.mb-2, .mb-3, .my-3 { margin-bottom: 4px !important; }
.mt-3, .my-3        { margin-top: 4px !important; }
.mr-sm-2            { margin-right: 4px !important; }
.text-muted         { color: var(--text-muted) !important; }

/* ── Top / container ──────────────────────────────────────── */
#top { height: 0; line-height: 0; display: block; }
#container { padding: 0 4px 4px; background-color: var(--bg-primary); }

/* ── Top menu ─────────────────────────────────────────────── */
.top-menu {
    background: var(--metal-dark);
    border: 1px solid var(--border-mid);
    border-left: 3px solid var(--accent-amber);
    color: var(--text-secondary);
    padding: 5px 8px; margin-bottom: 4px;
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
}

/* ── Alerts ───────────────────────────────────────────────── */
.alert {
    padding: 6px 10px; margin-bottom: 4px;
    border: 1px solid transparent;
    border-radius: 0; font-family: var(--font-body);
    border-left-width: 3px !important;
}
.alert-success {
    background: rgba(0,230,118,0.08);
    border-color: var(--accent-green) !important;
    color: #6effc0;
}
.alert-success a { color: var(--accent-green); }
.alert-info {
    background: rgba(0,212,255,0.08);
    border-color: var(--accent-cyan) !important;
    color: var(--accent-cyan);
}
.alert-info a { color: #7df0ff; }
.alert-warning {
    background: rgba(240,165,0,0.08);
    border-color: var(--accent-amber) !important;
    color: #f5cc60;
}
.alert-warning a { color: var(--accent-amber); }
.alert-danger {
    background: rgba(255,61,61,0.08);
    border-color: var(--accent-red) !important;
    color: #ff9090;
}
.alert-danger a { color: #ffb0b0; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 4px; }
.form-group:last-child { margin-bottom: 0; }

.form-control {
    display: block; width: 100%; padding: 5px 8px;
    background: var(--bg-elevated) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-mid) !important;
    border-radius: 0 !important;
    font-family: var(--font-body); font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: var(--glow-cyan) !important;
    outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-inline .form-control { display: inline-block; width: auto; }
.form-text { display: block; }
.form-check-label { margin-left: 4px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block; text-align: center; white-space: nowrap;
    border: 1px solid transparent;
    padding: 5px 12px; border-radius: 0;
    cursor: pointer; text-decoration: none;
    font-family: var(--font-display); font-size: 13px;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.2s; position: relative; overflow: hidden;
}
.btn:hover { text-decoration: none; }
.btn + .btn { margin-left: 4px; }

/* Shine sweep on hover */
.btn::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.4s;
}
.btn:hover::before { left: 100%; }

.btn-primary {
    color: var(--bg-primary) !important;
    background: linear-gradient(135deg, var(--accent-cyan), #0099bb);
    border-color: var(--accent-cyan);
}
.btn-primary:hover { box-shadow: var(--glow-cyan); opacity: 0.9; color: var(--bg-primary) !important; }

.btn-success {
    color: var(--bg-primary) !important;
    background: linear-gradient(135deg, var(--accent-green), #00a854);
    border-color: var(--accent-green);
}
.btn-success:hover { box-shadow: var(--glow-green); opacity: 0.9; color: var(--bg-primary) !important; }

.btn-warning {
    color: var(--bg-primary) !important;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-orange));
    border-color: var(--accent-amber);
}
.btn-warning:hover { box-shadow: var(--glow-amber); opacity: 0.9; color: var(--bg-primary) !important; }

.btn-danger {
    color: #fff !important;
    background: linear-gradient(135deg, #b5001a, #7a000f);
    border-color: var(--accent-red);
}
.btn-danger:hover { box-shadow: 0 0 8px rgba(255,61,61,0.4); opacity: 0.9; }

.btn-light {
    color: var(--text-primary) !important;
    background: var(--metal-mid);
    border-color: var(--border-bright);
}
.btn-light:hover { background: var(--metal-light); border-color: var(--accent-cyan); color: var(--text-primary) !important; }

.btn-sm { padding: 3px 8px; font-size: 11px; }
.btn-block { display: block; width: 100%; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
    display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
    background: linear-gradient(90deg, var(--metal-dark), var(--bg-elevated));
    border-left: 3px solid var(--accent-amber);
    border-bottom: 1px solid var(--border-mid);
    color: var(--text-secondary);
    margin-bottom: 4px; padding: 5px 10px;
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--accent-cyan); }
.breadcrumb a:hover { color: var(--accent-amber); }

/* ── Card ─────────────────────────────────────────────────── */
.card { border: 1px solid var(--border-mid) !important; border-radius: 0 !important; }

.card-header {
    padding: 6px 10px;
    font-family: var(--font-display); font-size: 13px;
    font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    background: linear-gradient(90deg, var(--metal-dark), var(--bg-elevated));
    border-left: 3px solid var(--accent-amber);
    border-bottom: 1px solid var(--accent-amber);
    color: var(--text-primary);
    position: relative;
}
.card-header::after {
    content: ''; position: absolute; top: 0; right: 0;
    width: 22px; height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(240,165,0,0.12) 50%);
}
.card-header a { color: var(--accent-cyan); }
.card-header a:hover { color: var(--accent-amber); }

.card-body {
    padding: 8px 10px;
    background: var(--bg-card);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.010) 0px, rgba(255,255,255,0.010) 1px,
        transparent 1px, transparent 6px
    );
    border: 1px solid var(--border-dim);
    border-top: none;
}

.card-footer {
    background: var(--metal-dark);
    border: 1px solid var(--border-dim); border-top: none;
    color: var(--text-muted);
    padding: 5px 10px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
}

/* ── List group ───────────────────────────────────────────── */
.list-group:first-child { border-top: 1px solid var(--border-dim); }

.list-group-item {
    padding: 7px 10px;
    border: 1px solid var(--border-dim); border-top: none;
    background: var(--bg-card); color: var(--text-primary);
    word-wrap: break-word;
    transition: background 0.15s, border-left 0.15s;
}
.list-group-item:hover { background: var(--bg-elevated); }

.list-group-item-success {
    background: rgba(0,230,118,0.08);
    border-left: 3px solid var(--accent-green);
    color: #6effc0;
}

/* ── Pagination ───────────────────────────────────────────── */
.pagination > span,
.pagination > a {
    display: inline-block;
    border: 1px solid var(--border-mid); border-radius: 0;
    padding: 3px 9px; margin-left: 3px;
    font-family: var(--font-mono); font-size: 12px;
    background: var(--bg-card); color: var(--text-secondary);
    transition: all 0.15s;
}
.pagination > span:first-child,
.pagination > a:first-child { margin-left: 0; }
.pagination .current {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-orange));
    border-color: var(--accent-amber);
    color: var(--bg-primary);
}
.pagination .link:hover {
    background: var(--metal-mid);
    border-color: var(--accent-cyan);
    color: var(--text-primary);
}

/* ── BBCode ───────────────────────────────────────────────── */
.spoilerhead {
    background: var(--metal-dark); color: var(--accent-amber);
    padding: 4px 8px; border: 1px solid var(--border-mid);
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
    cursor: pointer;
}
.spoilerbody {
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim); border-top: none;
    padding: 6px 10px; color: var(--text-primary);
}
.phpcode {
    background: #0a1020; color: var(--accent-cyan);
    border-left: 3px solid var(--accent-green);
    padding: 8px 12px; margin-top: 4px;
    font-family: var(--font-mono); font-size: 13px;
    overflow: auto;
}
.quote {
    border-left: 3px solid var(--accent-cyan);
    color: var(--text-muted); font-size: 12px;
    margin-left: 2px; padding: 3px 0 3px 8px;
}
.quote_container {
    border: 1px solid var(--border-mid); margin: 6px 0;
}
.quote_header {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent-cyan);
    background: linear-gradient(90deg, rgba(0,212,255,0.08), transparent);
    border-bottom: 1px solid var(--border-mid);
    padding: 4px 10px;
}
.quote_body {
    background: rgba(0,0,0,0.2);
    padding: 6px 10px; color: var(--text-secondary);
    font-style: italic; font-size: 13px;
}

/* ── Embed player ─────────────────────────────────────────── */
.embed-wrapper { max-width: 500px; margin: 0 auto; }
.embed-container {
    position: relative; display: block; height: 0;
    padding: 0; padding-bottom: 56.25%; overflow: hidden;
    border: 1px solid var(--border-mid);
}
.embed-container.soundcloud { padding-bottom: 30%; }
.embed-container iframe,
.video-container object,
.video-container embed,
.video-container video {
    position: absolute; top: 0; bottom: 0; left: 0;
    width: 100%; height: 100%; border: 0;
}

/* ── Status / sub ─────────────────────────────────────────── */
.status {
    color: var(--accent-amber); font-size: 11px;
    font-family: var(--font-mono); letter-spacing: 0.08em;
    padding-left: 0;
}
.sub {
    border-top: 1px dotted var(--border-mid);
    font-size: 11px; margin-top: 4px;
    color: var(--text-muted);
}

/* ── Helpers ──────────────────────────────────────────────── */
.center { text-align: center; }
.icon { padding: 3px 6px 3px 1px; vertical-align: middle; }
.icon-inline { padding-right: 6px; vertical-align: middle; }
.left { float: left; }
.gray { color: var(--text-muted); }
.green, .green a { color: var(--accent-green); }
.red,   .red a   { color: var(--accent-red); }
.alarm a { color: var(--accent-amber); font-size: 11px; }

/* ── Table desc ───────────────────────────────────────────── */
table.desc {
    border-top: 1px solid var(--border-dim);
    width: 100%; overflow: auto; font-size: 12px; margin-top: 4px;
}
table.desc td { font-size: 12px; color: var(--text-primary); }
table.desc td.caption {
    width: 1%; text-align: right;
    color: var(--text-muted);
    white-space: nowrap; padding-right: 6px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
}

/* ── Avatar ───────────────────────────────────────────────── */
.avatar { display: table-cell; vertical-align: top; }
.avatar img {
    height: 60px; width: 60px;
    margin-right: 6px; margin-bottom: 5px;
    border-radius: 50%;
    border: 2px solid var(--accent-amber);
    box-shadow: 0 0 8px rgba(240,165,0,0.25);
}
.righttable { display: table-cell; vertical-align: top; }

/* ── BB Toolbar ───────────────────────────────────────────── */
.bb_input { margin-bottom: 4px; background: var(--bg-elevated); }
.bb_toolbar { line-height: 26px; }
.bb_group {
    display: inline-block;
    background: var(--metal-dark);
    border: 1px solid var(--border-mid);
    margin: 0 3px; border-radius: 0;
}
.bb_group:first-child { margin-left: 0; }
.bb_group a { display: inline-block; height: 26px; margin: 0 2px; }

.bbpopup { margin-top: 3px; }
.bbpopup a {
    border: 1px solid var(--border-mid);
    height: 12px; display: inline-block;
    margin: 1px; vertical-align: middle; width: 12px;
    background: var(--bg-elevated);
    transition: border-color 0.15s;
}
.bbpopup a:hover { border-color: var(--accent-cyan); }

.codepopup { margin-top: 3px; }
.codepopup a {
    border: 1px solid var(--border-mid); border-radius: 0;
    background: var(--metal-dark); color: var(--text-secondary);
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em; padding: 2px 8px;
    display: inline-block; margin-right: 5px; margin-bottom: 3px;
    text-decoration: none; transition: all 0.15s;
}
.codepopup a:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

/* ── Forum vote ───────────────────────────────────────────── */
.vote_result .result_label { margin-top: 3px; font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); }
.vote_result .result_bar { vertical-align: bottom; }
.vote_result .result_bar_container {
    display: inline-block; vertical-align: bottom;
    width: 102px; height: 12px;
    border: 1px solid var(--border-mid);
    background: var(--metal-dark);
}
.vote_result .bar { height: 10px; }
.vote_result .bar.bg1 { background: var(--accent-red); }
.vote_result .bar.bg2 { background: var(--accent-amber); }
.vote_result .bar.bg3 { background: #7ec832; }
.vote_result .bar.bg4 { background: var(--accent-green); }

/* ── Forum post ───────────────────────────────────────────── */
.forum-post .fa-avatar { width: 40px; padding-right: 4px; }
.forum-post .post-content {
    margin: 4px -4px; padding: 6px;
    border-top: 1px solid var(--border-dim);
    color: var(--text-primary); font-size: 14px; line-height: 1.7;
}

/* ── Online status indicator ──────────────────────────────── */
.status-indicator {
    position: absolute; bottom: 1px; right: 1px;
    width: 8px; height: 8px; border-radius: 50%;
    border: 2px solid var(--bg-primary);
}
.status-indicator.online  { background: var(--accent-green); box-shadow: 0 0 5px var(--accent-green); }
.status-indicator.offline { background: var(--text-muted); }

/* ── Dropdown (Bootstrap override) ───────────────────────── */
.dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-bright); border-radius: 0;
}
.dropdown-item { color: var(--text-primary); font-size: 13px; }
.dropdown-item:hover { background: var(--metal-mid); color: var(--text-primary); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
    body { font-size: 13px; }
    .btn { padding: 4px 8px; font-size: 12px; }
    .card-header { font-size: 12px; }
}


/* ── Action bar ───────────────────────────────────── */
.aero-action-bar {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    background: var(--metal-dark);
    border: 1px solid var(--border-mid);
    border-left: 3px solid var(--accent-amber);
    padding: 5px 10px; margin-bottom: 6px;
    font-family: var(--font-mono); font-size: 11px;
}
.aero-action-bar-label {
    color: var(--accent-amber);
    background: rgba(240,165,0,0.1); border: 1px solid rgba(240,165,0,0.3);
    padding: 0 5px; letter-spacing: 0.12em; font-size: 9px; flex-shrink: 0;
}
.aero-action-link {
    color: var(--text-secondary); letter-spacing: 0.06em;
    display: flex; align-items: center; gap: 5px;
    transition: color 0.2s; text-decoration: none;
}
.aero-action-link:hover { color: var(--accent-cyan); text-decoration: none; }
.aero-action-link--warn:hover { color: var(--accent-amber); }
.aero-action-link .fa { font-size: 11px; }
.aero-action-sep { color: var(--border-bright); }
.aero-action-badge {
    background: rgba(240,165,0,0.15); border: 1px solid rgba(240,165,0,0.4);
    color: var(--accent-amber); font-size: 9px; padding: 0 5px; letter-spacing: 0.1em;
}

/* ── Panel wrapper ────────────────────────────────── */
.aero-panel {
    border: 1px solid var(--border-mid);
    background: var(--bg-card);
    margin-bottom: 6px; position: relative;
}
.aero-panel::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background-image: repeating-linear-gradient(
        90deg, var(--accent-amber) 0, var(--accent-amber) 5px, transparent 5px, transparent 16px
    );
    opacity: 0.15; pointer-events: none; z-index: 1;
}

/* Panel header */
.aero-panel-hd {
    display: flex; align-items: center; gap: 8px;
    background: linear-gradient(90deg, var(--metal-dark), var(--bg-elevated));
    border-left: 3px solid var(--accent-amber);
    border-bottom: 1px solid var(--accent-amber);
    padding: 6px 10px;
    font-family: var(--font-display); font-size: 13px;
    font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--text-primary); position: relative;
}
.aero-panel-hd::after {
    content: ''; position: absolute; top: 0; right: 0;
    width: 22px; height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(240,165,0,0.12) 50%);
}
.aero-panel-hd--cyan {
    border-left-color: var(--accent-cyan);
    border-bottom-color: rgba(0,212,255,0.4);
}
.aero-panel-hd--cyan::after {
    background: linear-gradient(135deg, transparent 50%, rgba(0,212,255,0.08) 50%);
}
.aero-panel-sys {
    font-family: var(--font-mono); font-size: 9px;
    color: var(--accent-amber); background: rgba(240,165,0,0.1);
    border: 1px solid rgba(240,165,0,0.3);
    padding: 0 5px; letter-spacing: 0.12em; flex-shrink: 0;
}
.aero-panel-led {
    width: 7px; height: 7px; border-radius: 50%; margin-left: auto;
    background: var(--accent-green); box-shadow: 0 0 6px var(--accent-green);
    animation: aero-blink 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes aero-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── Post row ─────────────────────────────────────── */
.aero-post-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px; border-bottom: 1px solid var(--border-dim);
    background: var(--bg-card); position: relative;
    transition: background 0.15s;
}
.aero-post-row:last-child { border-bottom: none; }
.aero-post-row::before {
    content: ''; position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--accent-cyan);
    transform: scaleY(0); transition: transform 0.2s; transform-origin: bottom;
}
.aero-post-row:hover { background: var(--bg-elevated); }
.aero-post-row:hover::before { transform: scaleY(1); }

/* Thumbnail */
.aero-post-thumb {
    flex-shrink: 0; position: relative; width: 72px;
}
.aero-post-thumb img {
    display: block; width: 72px; height: 72px;
    object-fit: cover;
    border: 2px solid var(--border-mid);
    transition: border-color 0.2s;
}
.aero-post-row:hover .aero-post-thumb img { border-color: var(--accent-cyan); }
/* Corner chip */
.aero-thumb-corner {
    position: absolute; top: 0; right: 0;
    border-top: 8px solid var(--accent-amber);
    border-left: 8px solid transparent; opacity: 0.6;
}

/* Post info column */
.aero-post-info { flex: 1; min-width: 0; }

.aero-post-title {
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    letter-spacing: 0.03em; margin-bottom: 4px; line-height: 1.3;
}
.aero-post-title a { color: var(--accent-cyan); transition: color 0.2s; }
.aero-post-title a:hover { color: var(--accent-amber); text-decoration: none; }

.aero-post-desc {
    font-size: 13px; color: var(--text-secondary); line-height: 1.5;
    margin-bottom: 8px; word-wrap: break-word;
}

/* Meta fields */
.aero-post-meta {
    display: flex; flex-wrap: wrap; gap: 6px;
    border-top: 1px dashed var(--border-dim); padding-top: 7px; margin-top: 4px;
}
.aero-meta-field {
    display: flex; align-items: center; gap: 6px;
    background: rgba(0,0,0,0.2); border: 1px solid var(--border-dim);
    padding: 3px 8px;
    font-family: var(--font-mono); font-size: 11px;
}
.aero-meta-key {
    color: var(--text-muted); letter-spacing: 0.08em; white-space: nowrap;
    display: flex; align-items: center; gap: 4px;
}
.aero-meta-key .fa { color: var(--accent-cyan); font-size: 10px; }
.aero-meta-val { color: var(--text-primary); }
.aero-meta-val a { color: var(--text-secondary); }
.aero-meta-val a:hover { color: var(--accent-cyan); text-decoration: none; }
.aero-meta-time {
    color: var(--text-muted); font-size: 10px;
    display: inline-flex; align-items: center; gap: 3px; margin-left: 4px;
}
.aero-meta-time .fa { color: var(--accent-green); font-size: 9px; }
.aero-meta-rating { color: var(--accent-amber); font-weight: 700; }

/* ── Paging bar ───────────────────────────────────── */
.aero-paging-bar {
    padding: 6px 10px; background: var(--metal-dark);
    border: 1px solid var(--border-dim); border-top: none;
    display: flex; justify-content: center;
}

/* ── Category menu ────────────────────────────────── */
.aero-cat-title {
    color: var(--text-primary); font-family: var(--font-display);
    font-size: 13px; letter-spacing: 0.06em;
    transition: color 0.2s; flex: 1; text-decoration: none;
}
.aero-cat-title:hover { color: var(--accent-cyan); text-decoration: none; }

.aero-cat-children {
    display: flex; flex-wrap: wrap;
    padding: 4px;
    background: var(--bg-card);
    gap: 3px;
}
.aero-cat-child {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--metal-dark); border: 1px solid var(--border-dim);
    color: var(--text-secondary);
    font-family: var(--font-body); font-size: 13px;
    padding: 4px 10px; text-decoration: none;
    transition: all 0.15s;
}
.aero-cat-child .fa { color: var(--accent-cyan); font-size: 10px; }
.aero-cat-child:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-cyan);
    color: var(--text-primary);
    box-shadow: var(--glow-cyan);
    text-decoration: none;
}

@media (max-width: 480px) {
    .aero-post-thumb { width: 56px; }
    .aero-post-thumb img { width: 56px; height: 56px; }
    .aero-post-title { font-size: 14px; }
    .aero-post-meta { flex-direction: column; gap: 4px; }
    .aero-cat-children { gap: 2px; }
}