:root {
    --bg:           #0d0d1a;
    --bg-card:      #12122a;
    --bg-card-h:    #16163a;
    --accent:       #7b2fbe;
    --accent-b:     #a855f7;
    --mako:         #00ff88;
    --blue:         #4169e1;
    --gold:         #ffd700;
    --red:          #ff4040;
    --orange:       #ff8c00;
    --text:         #e8e8f0;
    --text-dim:     #8888aa;
    --border:       rgba(123, 47, 190, 0.25);
    --border-b:     rgba(123, 47, 190, 0.6);
    --mako-glow:    rgba(0, 255, 136, 0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    background-image:
        linear-gradient(rgba(123,47,190,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123,47,190,0.045) 1px, transparent 1px),
        radial-gradient(ellipse at 15% 40%,  rgba(123,47,190,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%,  rgba(65,105,225,0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 95%,  rgba(0,255,136,0.04) 0%, transparent 40%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ─── NAVBAR ────────────────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: rgba(13,13,26,0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.brand-icon {
    font-size: 1.3rem;
    color: var(--accent-b);
    filter: drop-shadow(0 0 6px var(--accent));
    animation: icon-pulse 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.2rem;
}

.nav-link {
    display: block;
    padding: 0.35rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--text-dim);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--mako);
    border-color: rgba(0,255,136,0.25);
    background: var(--mako-glow);
}

.nav-panel                { color: var(--gold) !important; }
.nav-panel:hover          { border-color: rgba(255,215,0,0.3) !important; background: rgba(255,215,0,0.07) !important; }
.nav-panel.active         { color: var(--gold) !important; border-color: rgba(255,215,0,0.3) !important; }

.nav-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.indicator-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--mako);
    box-shadow: 0 0 8px var(--mako);
    animation: blink 2s ease-in-out infinite;
}

.indicator-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--mako);
    letter-spacing: 0.1em;
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 80px 4rem 3rem;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--mako), transparent);
    opacity: 0.5;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    color: var(--mako);
    letter-spacing: 0.22em;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.title-solid   { display: block; color: var(--text); }
.title-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-b);
    filter: drop-shadow(0 0 18px rgba(168,85,247,0.45));
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-btn {
    padding: 0.7rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 1px solid;
    transition: all 0.25s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.cta-primary {
    background: var(--mako);
    color: #0d0d1a;
    border-color: var(--mako);
}
.cta-primary:hover {
    background: transparent;
    color: var(--mako);
    box-shadow: 0 0 22px rgba(0,255,136,0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--gold);
    border-color: rgba(255,215,0,0.5);
}
.cta-secondary:hover {
    background: rgba(255,215,0,0.08);
    box-shadow: 0 0 22px rgba(255,215,0,0.15);
}

/* ─── MATERIA ART ───────────────────────────────────────────────────────── */

.hero-visual { flex: 0 0 auto; }

.materia-wrap {
    position: relative;
    width: 300px; height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.materia {
    position: relative;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #d4a0ff 0%, #9b59d0 25%, #7b2fbe 55%, #2a0a4e 100%);
    box-shadow:
        0 0 30px var(--accent),
        0 0 70px rgba(123,47,190,0.5),
        0 0 120px rgba(123,47,190,0.2),
        inset 0 0 30px rgba(0,255,136,0.12);
    z-index: 3;
    animation: materia-pulse 4s ease-in-out infinite;
}

.materia-shine {
    position: absolute;
    top: 14%; left: 18%;
    width: 32%; height: 22%;
    background: rgba(255,255,255,0.42);
    border-radius: 50%;
    filter: blur(5px);
    transform: rotate(-25deg);
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: orbit-spin linear infinite;
}

.orbit-inner {
    width: 170px; height: 170px;
    border-color: rgba(0,255,136,0.55);
    box-shadow: 0 0 8px rgba(0,255,136,0.18), inset 0 0 8px rgba(0,255,136,0.06);
    animation-duration: 7s;
}

.orbit-mid {
    width: 225px; height: 225px;
    border-color: rgba(123,47,190,0.5);
    border-style: dashed;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-outer {
    width: 290px; height: 290px;
    border-color: rgba(65,105,225,0.3);
    border-style: dotted;
    animation-duration: 20s;
}

/* ─── SECTIONS ──────────────────────────────────────────────────────────── */

.section { padding: 5rem 4rem; }

.section-head { margin-bottom: 2.5rem; }

.section-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    color: var(--accent-b);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.head-rule {
    height: 2px;
    width: 120px;
    background: linear-gradient(90deg, var(--accent), var(--mako), transparent);
    border-radius: 1px;
}

/* ─── SERVER CARDS ──────────────────────────────────────────────────────── */

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: all 0.25s;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--mako));
    opacity: 0;
    transition: opacity 0.25s;
}

.server-card:hover {
    background: var(--bg-card-h);
    border-color: var(--border-b);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123,47,190,0.15);
}

.server-card:hover::before { opacity: 1; }

.server-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.server-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.1rem;
}

.server-game {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
}

.server-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.status-badge {
    padding: 0.2rem 0.6rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-running   { background: rgba(0,255,136,0.12);   color: var(--mako);     border: 1px solid rgba(0,255,136,0.35); }
.status-stopped   { background: rgba(255,64,64,0.12);   color: var(--red);      border: 1px solid rgba(255,64,64,0.35); }
.status-starting  { background: rgba(255,215,0,0.12);   color: var(--gold);     border: 1px solid rgba(255,215,0,0.35); }
.status-stopping  { background: rgba(255,140,0,0.12);   color: var(--orange);   border: 1px solid rgba(255,140,0,0.35); }
.status-suspended { background: rgba(136,136,170,0.1);  color: var(--text-dim); border: 1px solid rgba(136,136,170,0.3); }
.status-unknown   { background: rgba(136,136,170,0.1);  color: var(--text-dim); border: 1px solid rgba(136,136,170,0.3); }

.server-panel-link {
    display: block;
    text-align: center;
    padding: 0.55rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--accent-b);
    border: 1px solid var(--border);
    background: transparent;
    transition: all 0.2s;
}

.server-panel-link:hover {
    border-color: var(--border-b);
    background: rgba(123,47,190,0.1);
}

/* ─── UPDATE CARDS ──────────────────────────────────────────────────────── */

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 860px;
}

.update-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.4rem 1.5rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.update-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    opacity: 0;
    transition: opacity 0.25s;
}

.update-card:hover { border-color: var(--border-b); background: var(--bg-card-h); }
.update-card:hover::before { opacity: 1; }

.update-card.tag-announcement::before { background: var(--accent-b); }
.update-card.tag-update::before       { background: var(--blue); }
.update-card.tag-event::before        { background: var(--gold); }
.update-card.tag-maintenance::before  { background: var(--red); }

.update-datebox {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.1rem;
    padding-right: 1.25rem;
    border-right: 1px solid var(--border);
    min-width: 55px;
}

.date-num {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-b);
}

.date-mon {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.63rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

.update-body { flex: 1; }

.update-tag-badge {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.tbadge-announcement { background: rgba(168,85,247,0.15); color: var(--accent-b); border: 1px solid rgba(168,85,247,0.4); }
.tbadge-update       { background: rgba(65,105,225,0.15); color: #7090ff;         border: 1px solid rgba(65,105,225,0.4); }
.tbadge-event        { background: rgba(255,215,0,0.12);  color: var(--gold);     border: 1px solid rgba(255,215,0,0.35); }
.tbadge-maintenance  { background: rgba(255,64,64,0.12);  color: var(--red);      border: 1px solid rgba(255,64,64,0.35); }

.update-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.update-content {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ─── STATES ────────────────────────────────────────────────────────────── */

.loading-state {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.5rem;
    grid-column: 1 / -1;
}

.loading-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-b);
    animation: loading-bounce 1.2s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

.loading-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.73rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-left: 0.25rem;
}

.empty-state {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-dim);
    padding: 2.5rem 1.5rem;
    border: 1px dashed var(--border);
    text-align: center;
    letter-spacing: 0.1em;
    grid-column: 1 / -1;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */

.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 4rem;
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-brand {
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-b);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--mako); }
.sep { color: var(--border); }

.footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.67rem;
    color: var(--text-dim);
    opacity: 0.6;
}

/* ─── ADMIN SHARED ──────────────────────────────────────────────────────── */

.form-group { margin-bottom: 1.2rem; }

.form-label {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    padding: 0.6rem 0.75rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    border-radius: 2px;
    appearance: none;
}

.form-textarea {
    min-height: 110px;
    resize: vertical;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--accent-b);
    box-shadow: 0 0 0 2px rgba(168,85,247,0.15);
}

.form-select option { background: var(--bg-card); }

.btn-submit {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent-b);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-submit:hover {
    background: var(--accent-b);
    box-shadow: 0 0 22px rgba(168,85,247,0.3);
}

.error-msg {
    background: rgba(255,64,64,0.1);
    border: 1px solid rgba(255,64,64,0.3);
    color: var(--red);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    padding: 0.65rem 0.75rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
}

.success-msg {
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.3);
    color: var(--mako);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    padding: 0.65rem 0.75rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
    display: none;
}

/* ─── ADMIN LOGIN ───────────────────────────────────────────────────────── */

.admin-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.admin-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.admin-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-logo .brand-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: icon-pulse 3s ease-in-out infinite;
}

.admin-logo h1 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-dim);
}

.admin-back {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.admin-back:hover { color: var(--mako); }

/* ─── DASHBOARD ─────────────────────────────────────────────────────────── */

.dash-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(13,13,26,0.95);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.dash-brand { font-weight: 700; letter-spacing: 0.1em; font-size: 1rem; }

.dash-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    color: var(--mako);
    display: block;
}

.dash-nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.view-site-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.view-site-link:hover { color: var(--mako); }

.btn-logout {
    padding: 0.4rem 1rem;
    background: transparent;
    border: 1px solid rgba(255,64,64,0.3);
    color: var(--red);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-logout:hover { background: rgba(255,64,64,0.1); border-color: var(--red); }

.dash-content {
    padding: 2.5rem;
    max-width: 860px;
    margin: 0 auto;
}

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

.dash-section-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-b);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.update-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
    margin-bottom: 0.6rem;
    transition: border-color 0.2s;
}

.update-list-item:hover { border-color: var(--border-b); }

.update-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.update-item-meta {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.67rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.btn-delete {
    flex-shrink: 0;
    padding: 0.3rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(255,64,64,0.25);
    color: var(--red);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.67rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete:hover { background: rgba(255,64,64,0.1); border-color: var(--red); }

/* ─── ANIMATIONS ────────────────────────────────────────────────────────── */

@keyframes icon-pulse {
    0%, 100% { filter: drop-shadow(0 0 6px var(--accent)); }
    50%       { filter: drop-shadow(0 0 14px var(--accent-b)); }
}

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

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

@keyframes materia-pulse {
    0%, 100% {
        box-shadow: 0 0 30px var(--accent), 0 0 70px rgba(123,47,190,0.5),
                    0 0 120px rgba(123,47,190,0.2), inset 0 0 30px rgba(0,255,136,0.12);
    }
    50% {
        box-shadow: 0 0 50px var(--accent), 0 0 100px rgba(123,47,190,0.6),
                    0 0 160px rgba(0,255,136,0.08), inset 0 0 50px rgba(0,255,136,0.2);
    }
}

@keyframes loading-bounce {
    0%, 100% { transform: translateY(0);    opacity: 0.4; }
    50%       { transform: translateY(-5px); opacity: 1; }
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding: 100px 2rem 3rem; }
    .hero-cta { justify-content: center; }
    .nav-indicator { display: none; }
    .section { padding: 3.5rem 2rem; }
    .footer { padding: 1.5rem 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .dash-content { padding: 1.5rem; }
}

@media (max-width: 600px) {
    .navbar { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .materia-wrap  { width: 220px; height: 220px; }
    .orbit-outer   { width: 210px; height: 210px; }
    .orbit-mid     { width: 170px; height: 170px; }
    .orbit-inner   { width: 130px; height: 130px; }
    .materia       { width: 90px; height: 90px; }
    .update-card   { flex-direction: column; gap: 0.75rem; }
    .update-datebox {
        flex-direction: row;
        gap: 0.5rem;
        align-items: baseline;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.6rem;
    }
}
