@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg: #050910;
    --panel: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --text: #e8edf5;
    --muted: #9fb1c9;
    --accent: #5af0b0;
    --accent-2: #6fb5ff;
    --shadow: 0 20px 70px rgba(28, 205, 170, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.page-shell {
    background: radial-gradient(circle at 20% 20%, rgba(90, 240, 176, 0.12), transparent 25%),
        radial-gradient(circle at 80% 0%, rgba(111, 181, 255, 0.12), transparent 25%),
        var(--bg);
    min-height: 100vh;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(5, 9, 16, 0.75);
    border-bottom: 1px solid var(--border);
}

.nav a {
    text-decoration: none;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
}

.megaphone-bar {
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 22px;
}

.megaphone-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(120deg, rgba(90, 240, 176, 0.16), rgba(111, 181, 255, 0.1));
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.megaphone-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    background-image: linear-gradient(135deg, var(--accent), var(--accent-2)), url('../css/img/icon/megaphone.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #041420;
    box-shadow: var(--shadow);
}

.megaphone-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.megaphone-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
}

.megaphone-message {
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    word-break: break-word;
}

.megaphone-meta {
    font-size: 12px;
    color: var(--muted);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.muted {
    color: var(--muted);
}

.lead {
    margin: 8px auto 0;
    max-width: 780px;
    color: var(--muted);
}

.landing-hero {
    width: 100%;
    margin: 0 0 28px;
    padding: 48px 0 32px;
    text-align: center;
    /* background: url('img/bg.webp') center/cover no-repeat; */
}

.hero-graphic {
    display: flex;
    justify-content: center;
    margin: 0 auto 14px;
}

.hero-graphic img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.4));
}

.status-bar {
    width: 100%;
    padding: 8px 14px;
    display: flex;
    gap: 8px;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.status-item {
    flex: 1 1 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    min-width: 140px;
}

.status-label {
    color: var(--muted);
    font-size: 13px;
}

.status-online {
    color: var(--accent);
}

.status-offline {
    color: #f08a8a;
}

.hero-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.section-block {
    max-width: 1200px;
    margin: 24px auto;
    padding: 26px 22px 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.section-soft {
    background: linear-gradient(145deg, rgba(111, 181, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.section-deep {
    background: linear-gradient(150deg, rgba(90, 240, 176, 0.14), rgba(255, 255, 255, 0.03));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.section-block:nth-of-type(odd) {
    background: linear-gradient(135deg, rgba(111, 181, 255, 0.12), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 12% 20%, rgba(90, 240, 176, 0.14), transparent 35%),
        rgba(255, 255, 255, 0.02);
}

.section-block:nth-of-type(even) {
    background: linear-gradient(135deg, rgba(90, 240, 176, 0.12), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 80% 10%, rgba(111, 181, 255, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.025);
}

.section-header h2 {
    margin: 8px 0 4px;
    font-size: 24px;
}

.section-header .muted {
    margin: 0;
}

.section-body {
    margin-top: 12px;
}

.worldboss-section .section-header h2 {
    margin-bottom: 4px;
}

.worldboss-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.worldboss-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(140deg, rgba(90, 240, 176, 0.16), rgba(111, 181, 255, 0.1));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.worldboss-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 10% 10%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(110% 110% at 80% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.worldboss-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.worldboss-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.worldboss-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.worldboss-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1;
}

.worldboss-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: fit-content;
}

.worldboss-label {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.worldboss-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}

.worldboss-meta {
    font-size: 12px;
    color: var(--muted);
}

.worldboss-side {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.worldboss-blurb-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.worldboss-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.worldboss-list code {
    background: rgba(255, 255, 255, 0.06);
    padding: 1px 6px;
    border-radius: 6px;
    color: var(--text);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    align-items: center;
}

.welcome-body {
    display: grid;
    gap: 16px;
    align-items: center;
    position: relative;
    padding-right: 240px;
    text-align: left;
}

.welcome-body .stack {
    max-width: 720px;
}

.stack {
    display: grid;
    gap: 10px;
}

.bullet {
    margin: 2px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.bullet li {
    margin-bottom: 6px;
}

.image-frame {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.image-frame img {
    width: 100%;
    max-width: 240px;
    border-radius: 12px;
}

.image-frame.floating {
    justify-self: end;
    max-width: 200px;
    transform: translateY(6px);
}

.image-frame.small {
    max-width: 170px;
}

.welcome-visual {
    position: absolute;
    right: 22px;
    bottom: -30px;
    width: 150px;
    max-width: 200px;
}

.welcome-visual img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.rate-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 20px;
    align-items: center;
}

.rate-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rate-value {
    font-size: 20px;
    font-weight: 700;
}

.rate-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.info-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.info-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
    color: var(--text);
}

.info-list li {
    line-height: 1.4;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    align-items: start;
}

.news-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    display: grid;
    grid-template-rows: 140px 1fr;
}

.news-thumb {
    background: rgba(0, 0, 0, 0.2);
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 12px;
    display: grid;
    gap: 6px;
}

.news-title {
    font-weight: 700;
}

.news-meta {
    color: var(--muted);
    font-size: 13px;
}

.news-body {
    margin-top: 4px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    align-items: center;
}

.stat-card strong {
    display: block;
    margin-top: 6px;
    font-size: 22px;
}

.stat-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.woe-box {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    max-width: 480px;
}

.woe-count {
    font-size: 32px;
    font-weight: 700;
}

.woe-label {
    color: var(--muted);
    margin-top: 4px;
}

.panel {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-head.center {
    justify-content: center;
}

.panel .small {
    font-size: 12px;
}

.panel .link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.downloads {
    gap: 18px;
}

.download-block {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.download-panel {
    max-width: 520px;
    width: 100%;
    text-align: center;
    border: none;
    background: transparent;
    box-shadow: none;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 12px 0;
}

.image-frame.center {
    margin-left: auto;
    margin-right: auto;
}

.icon-inline {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.community-icons {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.community-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    box-shadow: none;
    font-weight: 600;
    transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.community-chip img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.community-chip.discord {
    background: #5865f2;
    color: #fff;
    box-shadow: 0 8px 18px rgba(88, 101, 242, 0.35);
}

.community-chip.facebook {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 8px 18px rgba(24, 119, 242, 0.35);
}

.community-chip.forum {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #041420;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.community-chip:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.sidebar-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sidebar-head {
    font-weight: 700;
    font-size: 13px;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-list a {
    color: var(--text);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 8px;
    display: inline-block;
    transition: background 120ms ease, transform 120ms ease;
}

.sidebar-list a:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(2px);
}

.sidebar-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 14px;
    align-items: center;
}

.pill {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease, border-color 120ms ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #041420;
    box-shadow: var(--shadow);
}

.btn-ghost {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.hero {
    max-width: 1200px;
    margin: 40px auto 24px;
    padding: 0 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.hero-panel {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(150deg, rgba(90, 240, 176, 0.12), rgba(111, 181, 255, 0.05) 60%, rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.card-grid {
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 0 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
    padding: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.content-shell {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 22px 32px;
}

.page-menu,
.sub-menu {
    margin: 8px 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.page-menu a,
.sub-menu a {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: var(--text);
}

.current-sub-menu {
    border-color: var(--accent);
    color: var(--accent);
}

.flux-message {
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(90, 240, 176, 0.08);
    color: var(--text);
}

.flux-error {
    background: rgba(255, 90, 90, 0.12);
    border-color: rgba(255, 90, 90, 0.4);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.pagination li {
    display: inline-flex;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    transition: transform 120ms ease, opacity 120ms ease, border-color 120ms ease;
}

.pagination a:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.pagination .current span,
.pagination .current a {
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
}

.pages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    transition: transform 120ms ease, opacity 120ms ease, border-color 120ms ease;
}

.page-num:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.current-page {
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
}

.jump-to-page {
    display: flex;
    justify-content: center;
    margin: 8px 0 14px;
    color: var(--muted);
}

.jump-to-page input[type="text"] {
    width: 60px;
    margin-left: 6px;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 14px;
    color: var(--text);
}

th,
td {
    border: 1px solid var(--border);
    padding: 10px 12px;
}

th {
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
    color: var(--muted);
}

tr:nth-child(every) {
    background: rgba(255, 255, 255, 0.02);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

form .btn {
    margin-top: 6px;
}

.date-time-field {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.date-time-field .date-field {
    display: inline-flex;
    gap: 4px;
}

.date-time-field select {
    width: auto;
    min-width: 64px;
}

.date-field {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.date-field select {
    width: auto;
    min-width: 64px;
}

.search-form p {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
}

.search-form label {
    font-size: 13px;
    color: var(--muted);
}

.search-form input[type="text"],
.search-form select {
    width: auto;
    min-width: 140px;
}

.search-form input[type="checkbox"] {
    width: auto;
    margin-left: 4px;
}

.search-form .date-field,
.search-form .date-time-field {
    margin-left: 4px;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 18px 22px 32px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 820px) {
    .rate-layout {
        grid-template-columns: 1fr;
    }

    .image-frame.floating {
        justify-self: center;
        transform: none;
    }
}

@media (max-width: 720px) {
    .landing-hero {
        padding: 32px 0 24px;
    }

    .content-shell {
        padding: 0 16px 28px;
    }

    .section-block {
        margin: 18px auto;
        padding: 20px 16px;
    }

    .status-bar {
        flex-wrap: wrap;
        padding: 10px 12px;
        gap: 10px;
    }

    .status-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 120px;
    }

    .welcome-body {
        padding-right: 0;
        text-align: center;
        justify-items: center;
    }

    .welcome-body .stack {
        text-align: center;
    }

    .welcome-visual {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 10px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .community-icons {
        gap: 8px;
    }

    .stat-card {
        grid-template-columns: 32px 1fr;
    }

    .stat-card strong {
        font-size: 20px;
    }
}