:root {
    --bg-color: #05010f;
    --bg-alt: rgba(18, 9, 43, 0.9);
    --surface: rgba(25, 16, 53, 0.85);
    --surface-light: rgba(37, 26, 72, 0.85);
    --accent: #4ef3ff;
    --accent-strong: #7f5dff;
    --accent-warm: #ff857c;
    --text: #f5f7ff;
    --text-muted: rgba(200, 209, 255, 0.7);
    --border: rgba(126, 137, 194, 0.2);
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
    --glow: 0 0 25px rgba(78, 243, 255, 0.45);
    --max-width: 1200px;
}

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

html, body {
    background: radial-gradient(circle at top, #130828, #04000c 65%);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    position: relative;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    position: relative;
    z-index: 2;
}

.starfield {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.starfield span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
    animation: twinkle linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.4); }
}

.site-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(9, 3, 29, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 99;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 3rem;
    padding: 6rem 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    text-shadow: var(--glow);
}

.hero-content p {
    margin-top: 1.25rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.btn.primary {
    background: linear-gradient(130deg, var(--accent), var(--accent-strong));
    color: #02000a;
    box-shadow: 0 10px 25px rgba(126, 94, 255, 0.45);
}

.btn.primary:hover,
.btn.primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(78, 243, 255, 0.5);
}

.btn.secondary {
    background: rgba(79, 56, 142, 0.6);
    color: var(--text);
    border-color: rgba(115, 141, 255, 0.5);
}

.btn.secondary:hover,
.btn.secondary:focus {
    background: rgba(115, 141, 255, 0.75);
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(78, 243, 255, 0.4);
    color: var(--accent);
}

.btn.ghost:hover,
.btn.ghost:focus {
    background: rgba(78, 243, 255, 0.15);
}

.status-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.status-grid .label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-grid .metric {
    display: block;
    margin-top: 0.3rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.9rem;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(78, 243, 255, 0.3);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.orbital-ring {
    position: relative;
    width: 280px;
    height: 280px;
}

.orbital-core {
    position: absolute;
    inset: 45%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    box-shadow: 0 0 35px rgba(78, 243, 255, 0.6);
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(78, 243, 255, 0.4);
    animation: rotate 15s linear infinite;
    box-shadow: 0 0 20px rgba(78, 243, 255, 0.3);
}

.ring::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring:nth-child(2) {
    border-color: rgba(127, 93, 255, 0.6);
    animation-duration: 22s;
}

.ring:nth-child(3) {
    border-color: rgba(255, 133, 124, 0.45);
    animation-duration: 30s;
}

.ring {
    animation-delay: var(--delay);
}

@keyframes rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.03); }
    100% { transform: rotate(360deg) scale(1); }
}

.hero-caption {
    max-width: 320px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section {
    position: relative;
    padding: 5rem 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-grid article {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(78, 243, 255, 0.4);
}

.feature-grid h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-grid p {
    color: var(--text-muted);
}

.sector-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(280px, 1.5fr) minmax(240px, 1fr);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.sector-card {
    position: relative;
    padding: 2rem 1.8rem;
    background: var(--surface);
    border-radius: 18px;
    border: 1px solid var(--border);
    color: var(--text);
    text-align: left;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.sector-card:hover,
.sector-card:focus {
    transform: translateY(-6px);
    border-color: rgba(78, 243, 255, 0.5);
    box-shadow: var(--glow);
}

.sector-card .icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.sector-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
}

.sector-card p {
    color: var(--text-muted);
    margin-top: 0.6rem;
}

.sector-info {
    background: linear-gradient(160deg, rgba(40, 25, 87, 0.8), rgba(11, 4, 39, 0.9));
    border-radius: 22px;
    padding: 2.5rem;
    border: 1px solid rgba(126, 94, 255, 0.35);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
}

.sector-info-inner h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sector-info-inner p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-grid span {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(78, 243, 255, 0.3);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.market {
    background: rgba(8, 3, 28, 0.85);
    border-radius: 28px;
    margin-top: 4rem;
    box-shadow: var(--shadow);
}

.market-panels {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.market-panels > div {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(9, 4, 38, 0.35);
}

.market-panels h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.market-feed ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    color: var(--text-muted);
}

.alert-carousel {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
}

.alert-carousel::-webkit-scrollbar {
    height: 0;
}

.alert-card {
    flex: 0 0 240px;
    scroll-snap-align: center;
    background: rgba(22, 14, 50, 0.9);
    border-radius: 16px;
    padding: 1.4rem;
    border: 1px solid rgba(78, 243, 255, 0.2);
    box-shadow: var(--shadow);
    transition: transform 0.3s, border-color 0.3s;
}

.alert-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.alert-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-card.active {
    transform: translateY(-8px);
    border-color: rgba(78, 243, 255, 0.5);
}

.advisory-text {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.transit {
    background: rgba(10, 5, 30, 0.85);
    border-radius: 28px;
    margin-top: 4rem;
    box-shadow: var(--shadow);
}

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

.manifest-board {
    display: grid;
    gap: 1rem;
}

.board-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(18, 9, 45, 0.8);
    border-radius: 14px;
    border: 1px solid rgba(78, 243, 255, 0.2);
    box-shadow: 0 10px 25px rgba(3, 0, 18, 0.4);
}

.board-row span {
    font-family: 'Orbitron', sans-serif;
}

.board-row small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
}

.corridor-status {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.corridor-status li {
    background: rgba(19, 10, 45, 0.8);
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(78, 243, 255, 0.2);
    box-shadow: 0 8px 18px rgba(3, 0, 18, 0.35);
}

.corridor {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.08em;
}

.status {
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-left: 0.6rem;
}

.status.green { background: rgba(82, 255, 210, 0.15); color: #52ffd2; border: 1px solid rgba(82, 255, 210, 0.4); }
.status.amber { background: rgba(255, 200, 87, 0.15); color: #ffcd69; border: 1px solid rgba(255, 200, 87, 0.35); }
.status.red { background: rgba(255, 113, 113, 0.15); color: #ff7171; border: 1px solid rgba(255, 113, 113, 0.35); }

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

.visit-form,
.visit-insights > div {
    background: rgba(16, 7, 40, 0.85);
    padding: 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(78, 243, 255, 0.25);
    box-shadow: var(--shadow);
}

.visit-form h3,
.time-converter h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.visit-form label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.visit-form input,
.visit-form select,
.footer-form input {
    background: rgba(8, 3, 30, 0.85);
    border: 1px solid rgba(78, 243, 255, 0.3);
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-family: inherit;
}

.visit-form input:focus,
.visit-form select:focus,
.footer-form input:focus {
    outline: none;
    border-color: rgba(78, 243, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(78, 243, 255, 0.15);
}

.form-feedback {
    margin-top: 1rem;
    min-height: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.time-converter label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.time-converter input[type="range"] {
    width: 100%;
}

.time-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.time-results .label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.time-results .value {
    display: block;
    margin-top: 0.4rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--accent);
}

.experience-cards {
    margin-top: 2rem;
    display: grid;
    gap: 1.2rem;
}

.experience-cards article {
    background: rgba(11, 3, 32, 0.8);
    padding: 1.4rem;
    border-radius: 14px;
    border: 1px solid rgba(78, 243, 255, 0.25);
    transition: transform 0.3s, border-color 0.3s;
}

.experience-cards article:hover {
    transform: translateX(6px);
    border-color: rgba(127, 93, 255, 0.5);
}

.cta {
    padding-bottom: 6rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(37, 17, 84, 0.92), rgba(10, 2, 35, 0.92));
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(78, 243, 255, 0.25);
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.site-footer {
    background: rgba(4, 1, 15, 0.9);
    border-top: 1px solid rgba(78, 243, 255, 0.15);
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-grid h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.footer-grid p,
.footer-grid li,
.footer-note {
    color: var(--text-muted);
}

.footer-grid ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-form {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.footer-form input {
    flex: 1;
}

.footer-form button {
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    border: none;
    color: #02000a;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}

.footer-form button:hover {
    box-shadow: 0 12px 25px rgba(78, 243, 255, 0.5);
}

.footer-note {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.map-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.map-modal[aria-hidden="false"] {
    display: flex;
}

.map-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 0, 10, 0.85);
    backdrop-filter: blur(6px);
}

.map-dialog {
    position: relative;
    width: min(900px, 90vw);
    background: rgba(14, 6, 35, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(78, 243, 255, 0.35);
    padding: 2.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.close-map {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: transparent;
    border: 1px solid rgba(78, 243, 255, 0.3);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}

.map-content {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(240px, 1.3fr) minmax(200px, 1fr);
    gap: 2rem;
    align-items: center;
}

.map-grid {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(19, 11, 48, 0.9), rgba(4, 1, 14, 0.95));
    border: 1px solid rgba(78, 243, 255, 0.2);
    overflow: hidden;
}

.map-grid::after {
    content: '';
    position: absolute;
    inset: 15%;
    border: 1px dashed rgba(78, 243, 255, 0.2);
    border-radius: 24px;
}

.system-node {
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(78, 243, 255, 0.5);
    background: rgba(7, 1, 18, 0.85);
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(78, 243, 255, 0.35);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.system-node:hover,
.system-node:focus {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(78, 243, 255, 0.2);
    box-shadow: 0 0 30px rgba(78, 243, 255, 0.6);
}

.station-node {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    padding: 1.3rem 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(64, 236, 255, 0.25), rgba(114, 96, 255, 0.25));
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.18em;
}

.map-info {
    background: rgba(15, 5, 38, 0.9);
    border-radius: 18px;
    padding: 1.8rem;
    border: 1px solid rgba(78, 243, 255, 0.3);
    box-shadow: var(--shadow);
}

.map-info h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.8rem;
}

.map-info p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.map-info ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.map-info span {
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 960px) {
    .site-header {
        padding: 1rem 1.5rem;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 1.5rem;
        background: rgba(9, 3, 29, 0.92);
        border: 1px solid rgba(78, 243, 255, 0.25);
        border-radius: 16px;
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        transform: scale(0.9);
        transform-origin: top right;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s, transform 0.3s;
        min-width: 200px;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }

    .sector-layout {
        grid-template-columns: 1fr;
    }

    .map-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .alert-card {
        flex: 0 0 80%;
    }
}
.market-feed li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: rgba(10, 4, 35, 0.7);
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(78, 243, 255, 0.2);
}

.market-feed .name {
    font-weight: 600;
    letter-spacing: 0.08em;
}

.market-feed .change {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
}

.market-feed .change.up {
    color: #52ffd2;
}

.market-feed .change.down {
    color: #ff7171;
}

.market-feed .change.steady {
    color: #ffcd69;
}
.sector-card.active {
    border-color: rgba(78, 243, 255, 0.7);
    box-shadow: 0 12px 35px rgba(78, 243, 255, 0.35);
}
body.modal-open {
    overflow: hidden;
}
.board-row small {
    grid-column: 1 / -1;
    margin-top: 0.35rem;
}

.board-row .status-tag {
    justify-self: start;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(78, 243, 255, 0.2);
}

.status-tag.arriving { color: #52ffd2; border-color: rgba(82, 255, 210, 0.45); }
.status-tag.docking { color: #7f5dff; border-color: rgba(127, 93, 255, 0.45); }
.status-tag.cleared { color: #ffcd69; border-color: rgba(255, 200, 87, 0.4); }
.status-tag.holding { color: #ff7171; border-color: rgba(255, 113, 113, 0.4); }
.system-node.active {
    background: rgba(78, 243, 255, 0.35);
    box-shadow: 0 0 35px rgba(78, 243, 255, 0.7);
}
