:root {
    --bg: #111216;
    --panel: #181920;
    --panel-2: #20222a;
    --panel-3: #272a33;
    --panel-4: #2f323c;
    --border: #2b2d35;
    --soft-border: #3a3d46;
    --text: #f2f4f5;
    --muted: #aeb3bd;
    --muted-2: #7e838f;
    --link: #ffffff;
    --blue: #335fff;
    --blue-2: #2944d3;
    --chip: #262932;
    --success: #2cb66f;
    --danger: #d1565b;
    --sidebar-width: 276px;
    --topbar-height: 48px;
    --content-width: 1760px;
    --tile-width: 146px;
    --shadow: 0 12px 38px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: "Builder Sans", "Segoe UI", Arial, sans-serif;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-y: scroll;
}

body.modal-open {
    overflow: hidden;
}

.status-body {
    background:
        radial-gradient(circle at top, rgba(54, 83, 255, 0.1), transparent 34%),
        linear-gradient(180deg, #101116 0%, #12141b 100%);
    color: var(--text);
}

.status-shell {
    width: min(1360px, calc(100% - 48px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.status-header-centered {
    justify-content: center;
}

.status-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.status-brand-stacked {
    flex-direction: column;
    gap: 10px;
}

.status-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.status-brand img {
    height: 68px;
    width: auto;
    display: block;
}

.status-main {
    display: grid;
    gap: 26px;
}

.status-outage-banner {
    min-height: 34px;
    padding: 0 18px;
    border-radius: 0;
    background: #f08a00;
    color: #fff8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.status-outage-banner-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.status-overview-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 0 22px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.status-overview-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.status-overview-card strong,
.status-group-head h2,
.status-service-copy strong,
.status-intro {
    margin: 0;
}

.status-overview-card strong {
    font-size: 22px;
    line-height: 1.15;
}

.status-overview-operational .status-overview-icon {
    background: rgba(44, 182, 111, 0.18);
    color: #7ef0b2;
}

.status-overview-degraded .status-overview-icon {
    background: rgba(236, 168, 61, 0.18);
    color: #ffb120;
}

.status-intro {
    color: #b8d0ee;
    font-size: 16px;
    line-height: 1.55;
}

.status-groups {
    display: grid;
    gap: 34px;
}

.status-service-group {
    display: grid;
    gap: 18px;
}

.status-group-head h2 {
    font-size: 24px;
    line-height: 1.12;
}

.status-service-card {
    display: grid;
    gap: 22px;
    padding: 26px 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.status-service-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(460px, 1fr);
    gap: 26px;
    align-items: center;
}

.status-service-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.status-percent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #1971d8;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.status-percent-operational {
    background: #1971d8;
}

.status-percent-degraded {
    background: #e24b5b;
}

.status-percent-warning {
    background: #1971d8;
}

.status-percent-major {
    background: #e24b5b;
}

.status-service-copy strong {
    font-size: 16px;
    font-weight: 500;
}

.status-service-right {
    display: grid;
    gap: 7px;
}

.status-uptime-bars {
    display: grid;
    grid-template-columns: repeat(60, minmax(0, 1fr));
    gap: 4px;
    align-items: center;
}

.status-uptime-bar {
    display: block;
    height: 18px;
    border-radius: 999px;
}

.status-uptime-bar-operational {
    background: #58e58c;
}

.status-uptime-bar-warning {
    background: #ffb120;
}

.status-uptime-bar-major {
    background: #ff4d5d;
}

.status-uptime-scale {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7ea5cf;
    font-size: 12px;
}

.status-service-row + .status-service-row {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 8px;
}

.status-footer {
    padding-top: 8px;
}

.status-refresh-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 13px;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.rbx-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: var(--topbar-height);
    background: #18191e;
    border-bottom: 1px solid #2a2c31;
}

.site-status-banner {
    min-height: 34px;
    padding: 0 18px;
    background: #f08a00;
    color: #fff7e2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.site-status-banner-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.rbx-topbar-inner {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 18px;
    height: 100%;
    max-width: 100%;
    padding: 0 14px 0 18px;
    position: relative;
}

.rbx-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    min-width: 0;
}

.rbx-logo img {
    display: block;
    height: 22px;
    width: auto;
    max-width: 100%;
}

.rbx-topnav {
    display: flex;
    gap: 12px;
    align-self: stretch;
    justify-content: flex-start;
    width: auto;
    max-width: none;
}

.rbx-topnav a,
.rbx-iconlink {
    color: #f5f5f5;
    font-weight: 600;
    font-size: 15px;
}

.rbx-topnav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    min-width: 176px;
    height: 100%;
    justify-content: center;
    opacity: 0.96;
}

.rbx-topnav a::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: -1px;
    height: 3px;
    background: white;
    opacity: 0;
}

.rbx-topnav a:hover::after {
    opacity: 1;
}

.rbx-search input {
    width: 100%;
    height: 30px;
    border: 1px solid #343741;
    border-radius: 8px;
    background: #23252b;
    color: white;
    padding: 0 14px;
    outline: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.rbx-search {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, calc(100vw - 640px));
    display: flex;
    justify-content: center;
}

.rbx-search input::placeholder {
    color: #a4a9b2;
}

.rbx-userbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.rbx-userpill {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: transparent;
    font-size: 14px;
}

.rbx-shell {
    display: block;
    min-height: calc(100vh - var(--topbar-height));
    margin-top: var(--topbar-height);
    margin-left: var(--sidebar-width);
}

.rbx-sidebar {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--topbar-height));
    overflow-y: auto;
    background: #111216;
    border-right: 1px solid #262933;
    padding: 14px 0 22px;
    z-index: 10;
}

.rbx-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px 18px;
}

.rbx-profile-avatar,
.private-server-avatar,
.fallback-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #313543;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    overflow: hidden;
}

.rbx-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.private-server-avatar img,
.game-tile-thumb img,
.experience-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rbx-profile-name,
.rbx-profile-sub {
    margin: 0;
}

.rbx-profile-name {
    font-weight: 700;
    font-size: 14px;
}

.rbx-profile-sub {
    color: #c7ccd6;
    font-size: 12px;
}

.rbx-sidenav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
}

.rbx-sidenav a {
    display: block;
    padding: 12px 18px;
    color: #f1f1f1;
    font-weight: 600;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.15;
}

.rbx-sidenav a.is-active,
.rbx-sidenav a:hover {
    background: #262932;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.rbx-main {
    width: 100%;
    padding: 28px 24px 56px;
    min-width: 0;
}

.page-head h1,
.page-head p,
.rbx-section-head h2,
.rbx-section-head p {
    margin: 0;
}

.page-head {
    margin-bottom: 26px;
}

.not-found-shell {
    min-height: calc(100vh - var(--topbar-height) - 84px);
    display: grid;
    align-items: center;
    justify-items: center;
}

.not-found-card {
    display: grid;
    grid-template-columns: minmax(360px, 1.05fr) minmax(260px, 420px);
    align-items: center;
    gap: 34px;
    padding: 34px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    width: min(1180px, 100%);
}

.not-found-copy {
    display: grid;
    gap: 34px;
}

.not-found-text h1,
.not-found-text p {
    margin: 0;
}

.not-found-text h1 {
    max-width: 520px;
    font-size: 42px;
    line-height: 1.04;
    font-weight: 700;
}

.not-found-text p {
    margin-top: 18px;
    color: #eef1f5;
    font-size: 21px;
    font-weight: 500;
}

.not-found-text p span {
    display: inline-block;
    padding: 0 9px;
    color: var(--muted);
}

.not-found-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.not-found-back,
.not-found-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
}

.not-found-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

.not-found-art img {
    width: min(100%, 360px);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24));
}

.page-head h1 {
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.page-head p,
.rbx-section-head span,
.private-server-detail,
.private-server-name,
.game-tile-creator,
.experience-byline,
.experience-maturity,
.about-description,
.rbx-section-head p {
    color: var(--muted);
}

.page-head-discover p,
.page-head-library p {
    max-width: 760px;
    font-size: 15px;
}

.charts-toolbar {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.charts-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #262932;
    color: #f1f3f4;
    font-weight: 700;
    font-size: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.charts-chip::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid #cbd0d9;
    border-bottom: 2px solid #cbd0d9;
    transform: rotate(45deg) translateY(-1px);
}

.flash {
    position: fixed;
    top: calc(var(--topbar-height) + 6px);
    left: 50%;
    transform: translate(-50%, -24px);
    width: min(972px, calc(100vw - 32px));
    margin: 0;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
}

.alert {
    min-height: 46px;
    border-radius: 0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    text-align: center;
}

.flash.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
    transition: transform 220ms ease, opacity 220ms ease;
}

.flash.is-hiding {
    opacity: 0;
    transform: translate(-50%, -24px);
    transition: transform 220ms ease, opacity 220ms ease;
}

.alert-content {
    display: block;
}

.alert.alert-success {
    background: #1f3328;
    border-color: #325b43;
    color: #d8f2e3;
}

.alert.alert-error {
    background: #3a2023;
    border-color: #7a3c42;
    color: #ffd8dc;
}

.alert code {
    background: rgba(255, 255, 255, 0.08);
    padding: 1px 6px;
    border-radius: 4px;
}

.rbx-section,
.about-panel {
    background: transparent;
    margin-bottom: 34px;
}

.rbx-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.rbx-section-head h2 {
    font-size: 17px;
    font-weight: 800;
}

.empty-block {
    background: linear-gradient(180deg, rgba(36, 38, 47, 0.78), rgba(22, 23, 29, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    color: var(--muted);
    border-radius: 12px;
    padding: 24px;
}

.discover-empty {
    max-width: 820px;
}

.discover-loading {
    margin-top: 18px;
    color: var(--muted);
    text-align: center;
}

.discover-failed-shell {
    min-height: calc(100vh - var(--topbar-height) - 180px);
    display: grid;
    place-items: center;
}

.discover-failed-card {
    width: min(460px, 100%);
    padding: 26px 24px 30px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    text-align: center;
}

.discover-failed-card img {
    width: min(100%, 260px);
    height: auto;
    display: block;
    margin: 0 auto 18px;
}

.discover-failed-card h2,
.discover-failed-card p {
    margin: 0;
}

.discover-failed-card h2 {
    font-size: 28px;
    line-height: 1.08;
}

.discover-failed-card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.6;
}

.discover-failed-retry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.profile-shell {
    max-width: 1200px;
}

.profile-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    flex: 1;
}

.profile-card-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    background: #313543;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
}

.profile-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card-copy h1,
.profile-card-copy p,
.profile-card-copy span {
    margin: 0;
}

.profile-card-copy h1 {
    font-size: 32px;
    line-height: 1.15;
}

.profile-card-copy p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 15px;
}

.profile-card-copy span {
    display: inline-block;
    margin-top: 12px;
    color: var(--muted-2);
    font-size: 13px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.profile-stat-card,
.profile-panel {
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.profile-stat-card span,
.profile-summary-list span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 24px;
}

.profile-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 18px;
}

.admin-login-shell {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 160px);
}

.admin-login-card,
.admin-server-card {
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.admin-login-card {
    width: min(520px, 100%);
    border-radius: 18px;
    padding: 28px;
}

.admin-kicker {
    margin: 0 0 10px;
    color: #c6d6ff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.admin-login-card h1,
.admin-login-card p {
    margin: 0;
}

.admin-login-card h1 {
    font-size: 30px;
    line-height: 1.15;
}

.admin-login-card > p:last-of-type {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.6;
}

.admin-login-form,
.admin-link-form {
    display: grid;
    gap: 14px;
}

.admin-login-form {
    margin-top: 22px;
}

.admin-login-form label,
.admin-link-form label {
    display: grid;
    gap: 8px;
}

.admin-login-form label span,
.admin-link-form label span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.admin-login-form input,
.admin-link-form input {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid var(--soft-border);
    background: #20222a;
    color: var(--text);
    padding: 0 14px;
}

.admin-shell {
    max-width: 1200px;
}

.admin-stats {
    margin-bottom: 18px;
}

.admin-server-list {
    display: grid;
    gap: 16px;
}

.admin-feature-flags-form {
    display: grid;
    gap: 14px;
}

.admin-status-message-form,
.admin-status-message-remove {
    display: grid;
}

.admin-status-message-form {
    gap: 14px;
}

.admin-status-message-form label {
    display: grid;
    gap: 8px;
}

.admin-status-message-form label span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.admin-status-message-form textarea,
.admin-status-message-form input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--soft-border);
    background: #20222a;
    color: var(--text);
    padding: 12px 14px;
}

.admin-status-message-form textarea {
    min-height: 100px;
    resize: vertical;
}

.admin-status-message-help {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.admin-status-message-actions {
    display: flex;
    justify-content: flex-start;
}

.admin-status-message-remove {
    margin-top: 14px;
    justify-content: flex-start;
}

.admin-flag-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.admin-flag-card strong,
.admin-flag-card p {
    margin: 0;
}

.admin-flag-card strong {
    display: block;
    font-size: 16px;
}

.admin-flag-card p {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.55;
}

.admin-flag-card input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--blue);
    flex: 0 0 auto;
}

.admin-server-card {
    border-radius: 16px;
    padding: 18px;
}

.admin-server-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-server-copy h3,
.admin-server-copy p,
.admin-server-copy span {
    margin: 0;
}

.admin-server-copy h3 {
    font-size: 20px;
}

.admin-server-copy p {
    margin-top: 4px;
    color: var(--muted);
}

.admin-server-copy span {
    display: inline-block;
    margin-top: 8px;
    color: var(--muted-2);
    font-size: 13px;
}

.admin-server-meta,
.admin-server-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.admin-server-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-server-meta span,
.admin-server-links span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-server-meta strong,
.admin-server-links a {
    display: block;
    color: var(--text);
    font-size: 14px;
    word-break: break-word;
}

.admin-link-form {
    margin-top: 18px;
    grid-template-columns: minmax(0, 1fr) 220px auto;
    align-items: end;
}

.profile-summary-list {
    display: grid;
    gap: 16px;
}

.profile-summary-list strong {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    color: var(--text);
}

.configure-shell {
    max-width: 1160px;
    margin: 0 auto;
}

.configure-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.configure-hero,
.configure-card {
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.configure-hero {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 0;
    margin-bottom: 16px;
    overflow: hidden;
}

.configure-cover {
    aspect-ratio: 1 / 1;
    background: #242730;
}

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

.configure-summary {
    padding: 14px 0;
}

.configure-summary-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.configure-summary-row:last-child {
    border-bottom: 0;
}

.configure-summary-row span,
.configure-meta-grid span,
.configure-form label span {
    color: #f0f2f4;
    font-weight: 700;
    font-size: 14px;
}

.configure-summary-row strong,
.configure-meta-grid strong {
    font-size: 15px;
}

.configure-summary-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.configure-edit-trigger {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #bfc5cf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
}

.configure-edit-trigger:hover {
    opacity: 1;
    color: #f2f4f5;
}

.configure-edit-trigger svg {
    width: 15px;
    height: 15px;
    display: block;
}

.configure-edit-trigger img {
    width: 15px;
    height: 15px;
    display: block;
}

.configure-card {
    padding: 16px;
    margin-bottom: 16px;
}

.configure-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.configure-card-head h2,
.configure-card-head p {
    margin: 0;
}

.configure-card-head h2 {
    font-size: 15px;
    margin-bottom: 6px;
}

.configure-card-head p {
    color: var(--muted);
    line-height: 1.55;
    max-width: 760px;
}

.modal-shell {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.modal-dialog {
    position: relative;
    width: min(400px, calc(100vw - 32px));
    z-index: 1;
}

.modal-content {
    background: #2b2e36;
    border: 1px solid #3a3e48;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.46);
    overflow: hidden;
}

.discount-modal-card {
    background: linear-gradient(180deg, rgba(30, 32, 39, 0.98), rgba(21, 22, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #434754;
}

.modal-header h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
    flex: 1;
}

.modal-close {
    border: 0;
    background: transparent;
    color: #d7dbe3;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-name-set {
    display: block;
}

.modal-body {
    padding: 14px 18px 8px;
}

.discount-modal-body {
    padding-top: 18px;
}

.form-group.form-has-feedback {
    display: grid;
    gap: 8px;
}

.form-control.input-field {
    width: 100%;
    min-height: 38px;
    border-radius: 8px;
    border: 1px solid #4a4f5d;
    background: #3a3d46;
    color: var(--text);
    padding: 0 14px;
}

.discount-modal-input {
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid var(--soft-border);
    background: #20222a;
}

.form-control-label.pull-right {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    color: #c7ccd6;
    font-size: 12px;
}

.discount-modal-meta {
    color: var(--muted);
}

.modal-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 18px 16px;
}

.discount-modal-actions {
    justify-content: center;
    padding-top: 4px;
}

.discount-modal-primary {
    min-width: 136px;
}

.discount-modal-secondary {
    min-width: 104px;
}

.configure-toggle-form {
    display: flex;
    align-items: center;
}

.configure-toggle {
    width: 66px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #4a4e59;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: background 140ms ease;
}

.configure-toggle.is-on {
    background: #4169ff;
}

.configure-toggle-knob {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #ffffff;
    display: block;
    transition: transform 140ms ease;
}

.configure-toggle.is-on .configure-toggle-knob {
    transform: translateX(32px);
}

.configure-form-row,
.configure-link-row,
.configure-inline-actions,
.configure-external {
    display: flex;
    gap: 12px;
}

.configure-form-row {
    align-items: end;
}

.configure-form-row label {
    flex: 1;
    display: grid;
    gap: 8px;
}

.configure-form-row input,
.configure-link-row input {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid var(--soft-border);
    background: #2a2d35;
    color: var(--text);
    padding: 0 14px;
}

.configure-link-row {
    margin-top: 14px;
    align-items: center;
}

.configure-link-row input {
    flex: 1;
}

.configure-inline-actions {
    align-items: center;
    flex-wrap: wrap;
}

.configure-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.configure-meta-grid div {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.configure-meta-grid span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.configure-external {
    margin-top: 16px;
}

.hidden {
    display: none;
}

.queue-body {
    overflow: hidden;
    min-height: 100vh;
    background: #000;
}

.queue-circles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.queue-circle {
    position: absolute;
    border-radius: 9999px;
    opacity: 1;
}

.queue-circle-1 {
    left: 30vw;
    top: 25vh;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(50% 50% at 50% 50%, rgba(12, 119, 255, 0.3) 15.62%, rgba(12, 119, 255, 0) 100%);
    animation: queueCircleOne 12s infinite alternate, queueFadeCircleIn 1332ms ease-out;
}

.queue-circle-2 {
    left: 45vw;
    top: 30vh;
    width: 20vw;
    height: 20vw;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 56, 255, 0.3) 15.62%, rgba(12, 119, 255, 0) 100%);
    animation: queueCircleTwo 11.5s infinite alternate, queueFadeCircleIn 1332ms ease-out;
}

.queue-circle-3 {
    left: 35vw;
    top: 30vh;
    width: 20vw;
    height: 20vw;
    background: radial-gradient(50% 50% at 50% 50%, rgba(65, 56, 210, 0.5) 15.62%, rgba(65, 56, 210, 0) 100%);
    animation: queueCircleThree 15s infinite alternate, queueFadeCircleIn 1332ms ease-out;
}

.queue-shell {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.queue-card {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    padding: 36px;
    border-radius: 24px;
    background: rgba(14, 16, 22, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    text-align: center;
}

.queue-kicker,
.queue-game,
.queue-message {
    margin: 0;
}

.queue-kicker {
    color: #c6d6ff;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
}

.queue-card h1 {
    margin: 14px 0 10px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.02;
}

.queue-game {
    color: var(--muted);
    font-size: 18px;
}

.queue-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.queue-stat {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.queue-stat span,
.queue-message {
    color: var(--muted);
}

.queue-stat span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

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

.queue-message {
    margin-top: 22px;
    line-height: 1.6;
}

.queue-progress {
    margin-top: 24px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
}

.queue-progress-bar {
    position: absolute;
    left: -35%;
    top: 0;
    width: 35%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2148ff, #56a6ff, #2148ff);
    box-shadow: 0 0 18px rgba(86, 166, 255, 0.5);
    animation: queueProgressSlide 1.8s ease-in-out infinite;
}

.queue-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--tile-width), 1fr));
    gap: 18px 12px;
    align-items: start;
}

.charts-section {
    max-width: 100%;
}

.game-tile-thumb {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #292c34;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.game-tile-title {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.28;
    min-height: 38px;
}

.game-tile-creator {
    margin: 3px 0 0;
    font-size: 12px;
    min-height: 16px;
}

.game-tile-meta {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    font-size: 13px;
    color: #d9d9d9;
}

.game-tile-meta span {
    position: relative;
    padding-left: 19px;
}

.game-tile-meta span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 14px;
    height: 14px;
    opacity: 0.8;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.game-tile-meta span:first-child::before {
    background-image: url("/static/likeratio.svg");
}

.game-tile-meta span:last-child::before {
    background-image: url("/static/playercounticon.svg");
}

.charts-carousel {
    position: relative;
}

.charts-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--tile-width);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.charts-carousel-track::-webkit-scrollbar {
    display: none;
}

.charts-home-section .game-tile {
    width: var(--tile-width);
    min-width: var(--tile-width);
    max-width: var(--tile-width);
    min-height: 0;
}

.charts-carousel-arrow {
    position: absolute;
    top: 86px;
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(31, 33, 40, 0.9);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.charts-carousel:hover .charts-carousel-arrow:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.charts-carousel-arrow:hover {
    background: rgba(45, 49, 60, 0.96);
    transform: scale(1.03);
}

.charts-carousel-arrow span {
    font-size: 34px;
    line-height: 1;
    margin-top: -2px;
}

.charts-carousel-arrow-prev {
    left: -18px;
}

.charts-carousel-arrow-next {
    right: -18px;
}

.private-server-list {
    display: grid;
    gap: 14px;
}

.private-server-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    min-height: 86px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(28, 30, 37, 0.96), rgba(22, 23, 28, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.private-server-copy p,
.private-server-copy a {
    margin: 0;
}

.private-server-game {
    font-size: 18px;
    font-weight: 700;
}

.private-server-name {
    margin-top: 3px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

.private-server-detail {
    margin-top: 4px;
    font-size: 13px;
}

.private-server-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.primary-pill,
.ghost-pill,
.icon-pill,
.play-button-large,
.text-button {
    border: 0;
    border-radius: 10px;
    padding: 11px 18px;
    cursor: pointer;
    color: white;
    transition: background 120ms ease, transform 120ms ease;
}

.primary-pill,
.play-button-large {
    background: var(--blue);
    min-width: 140px;
    text-align: center;
    font-weight: 700;
}

.ghost-pill,
.icon-pill,
.text-button {
    background: #2c2f37;
}

.primary-pill:hover,
.play-button-large:hover {
    background: var(--blue-2);
}

.ghost-pill:hover,
.icon-pill:hover,
.text-button:hover {
    background: #363a44;
}

.primary-pill.is-disabled,
.ghost-pill.is-disabled,
.icon-pill.is-disabled {
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
}

.ghost-pill.large,
.play-button-large {
    min-height: 44px;
}

.text-button {
    padding: 10px 14px;
}

.experience-hero {
    display: grid;
    grid-template-columns: minmax(500px, 600px) minmax(320px, 360px);
    gap: 10px;
    align-items: start;
    margin-bottom: 18px;
    justify-content: center;
}

.experience-media {
    position: relative;
    height: 332px;
    overflow: hidden;
    background: #1e2128;
    border-radius: 0;
}

.experience-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(18px) brightness(0.7);
    transform: scale(1.08);
}

.experience-cover {
    position: absolute;
    inset: 16px auto auto 50%;
    width: 300px;
    height: 300px;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.experience-summary h1,
.engagement-row {
    margin: 0;
}

.experience-summary h1 {
    font-size: 30px;
    line-height: 1.24;
    font-weight: 800;
}

.experience-byline {
    margin-top: 10px;
    font-size: 16px;
}

.experience-maturity {
    margin-top: 8px;
    font-size: 16px;
}

.experience-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
    align-items: flex-start;
}

.engagement-row {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    color: #dfe2eb;
    font-size: 14px;
    flex-wrap: wrap;
}

.engagement-chip {
    padding: 0;
}

.tabbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    background: #2a2d35;
    margin-bottom: 18px;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.tabbar a {
    padding: 8px 18px 10px;
    text-align: center;
    font-weight: 600;
    border-bottom: 4px solid transparent;
}

.tabbar a:hover {
    background: #2d3038;
}

.tabbar a.is-active {
    border-bottom-color: white;
}

.about-panel h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.about-panel,
#user-private-servers {
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
}

.game-tab-panel {
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.about-description {
    max-width: 980px;
    white-space: pre-wrap;
    line-height: 1.65;
    font-size: 15px;
}

.fact-grid {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.fact-grid div span,
.fact-grid div strong {
    display: block;
}

.fact-grid div span {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.fact-grid div strong {
    font-size: 14px;
}

#user-private-servers .rbx-section-head {
    margin-bottom: 22px;
}

#user-private-servers .rbx-section-head h2 {
    font-size: 21px;
    margin: 0 0 4px;
}

#user-private-servers .rbx-section-head p {
    font-size: 15px;
}

.placeholder {
    background: #2d3038;
}

@media (max-width: 1280px) {
    .rbx-search {
        width: min(400px, calc(100vw - 680px));
    }

    .experience-hero {
        grid-template-columns: 1fr;
    }

    .fact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1120px) {
    .rbx-topbar-inner {
        grid-template-columns: 128px 1fr auto;
        gap: 12px;
        padding: 0 12px 0 14px;
    }

    .rbx-topnav {
        gap: 8px;
    }

    .rbx-topnav a {
        min-width: 132px;
        padding: 0 14px;
        font-size: 14px;
    }

    .rbx-topnav a::after {
        left: 14px;
        right: 14px;
    }

    .rbx-search {
        width: min(320px, calc(100vw - 620px));
    }

    .rbx-userbar {
        gap: 8px;
    }

    .rbx-userpill,
    .rbx-iconlink {
        font-size: 13px;
    }
}

@media (max-width: 980px) {
    .status-shell {
        width: min(100% - 24px, 100%);
        padding-top: 18px;
    }

    .status-main,
    .status-groups {
        gap: 20px;
    }

    .status-overview-card {
        min-height: 74px;
    }

    .status-outage-banner {
        min-height: 42px;
        padding: 8px 14px;
    }

    .status-service-card {
        gap: 18px;
        padding: 20px;
    }

    .status-service-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .status-refresh-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .rbx-topbar {
        height: auto;
    }

    .site-status-banner {
        min-height: 42px;
        padding: 8px 14px;
    }

    .rbx-shell {
        grid-template-columns: 1fr;
    }

    .rbx-sidebar {
        display: none;
    }

    .rbx-topbar-inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo user"
            "search search"
            "nav nav";
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
    }

    .rbx-logo {
        grid-area: logo;
    }

    .rbx-logo img {
        height: 20px;
    }

    .rbx-userbar {
        grid-area: user;
        display: flex;
        min-width: 0;
        gap: 10px;
    }

    .rbx-topnav {
        grid-area: nav;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .rbx-topnav::-webkit-scrollbar {
        display: none;
    }

    .rbx-topnav a {
        min-width: 148px;
        height: 40px;
        border-radius: 10px;
        background: #20222a;
        padding: 0 18px;
        flex: 0 0 auto;
    }

    .rbx-topnav a::after {
        left: 18px;
        right: 18px;
    }

    .rbx-search {
        grid-area: search;
        position: static;
        transform: none;
        width: 100%;
    }

    .rbx-search input {
        height: 38px;
    }

    .rbx-main {
        width: 100%;
        padding: 18px 16px 42px;
    }

    .not-found-shell {
        min-height: auto;
    }

    .not-found-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .not-found-art {
        order: -1;
    }

    .not-found-art img {
        width: min(100%, 260px);
    }

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

    .queue-status-grid {
        grid-template-columns: 1fr;
    }

    .profile-hero,
    .profile-panels,
    .profile-stats,
    .configure-hero {
        grid-template-columns: 1fr;
        display: grid;
    }

    .admin-server-meta,
    .admin-server-links,
    .admin-link-form,
    .configure-meta-grid {
        grid-template-columns: 1fr;
    }

    .profile-actions {
        width: 100%;
    }

    .private-server-row {
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: start;
    }

    .private-server-controls {
        grid-column: 1 / -1;
        width: 100%;
    }

    .admin-flag-card {
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .rbx-topbar-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "search"
            "nav"
            "user";
        align-items: stretch;
    }

    .rbx-userbar {
        justify-content: space-between;
    }

    .rbx-userpill,
    .rbx-iconlink {
        font-size: 13px;
    }

    .page-head h1 {
        font-size: 28px;
    }

    .charts-toolbar {
        flex-wrap: wrap;
    }

    .charts-chip {
        width: fit-content;
    }

    .game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }

    .private-server-row {
        grid-template-columns: 48px 1fr;
    }

    .private-server-controls {
        grid-column: 1 / -1;
    }

    .experience-media {
        height: 220px;
    }

    .experience-cover {
        width: 156px;
        height: 156px;
        inset: 20px auto auto 50%;
    }

    .tabbar {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .profile-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-card-copy h1,
    .admin-login-card h1,
    .experience-summary h1,
    .configure-head h1 {
        font-size: 24px;
    }

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

    .private-server-controls .primary-pill,
    .private-server-controls .ghost-pill,
    .private-server-controls .icon-pill,
    .profile-actions .ghost-pill,
    .profile-actions .play-button-large,
    .configure-link-row .primary-pill,
    .configure-form-row .primary-pill {
        width: 100%;
    }

    .admin-server-card {
        padding: 16px;
    }

    .admin-server-head {
        align-items: flex-start;
    }

    .configure-head,
    .configure-card-head,
    .configure-form-row,
    .configure-link-row {
        flex-direction: column;
        align-items: stretch;
    }

    .configure-summary-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 540px) {
    .status-shell {
        width: min(100% - 16px, 100%);
    }

    .status-brand img {
        height: 56px;
    }

    .status-overview-card {
        padding: 0 16px;
    }

    .status-overview-card strong {
        font-size: 18px;
    }

    .status-group-head h2 {
        font-size: 20px;
    }

    .status-service-card {
        padding: 16px;
    }

    .status-service-left {
        gap: 10px;
    }

    .status-percent {
        min-width: 56px;
        font-size: 13px;
    }

    .status-uptime-bars {
        gap: 3px;
    }

    .status-uptime-bar {
        height: 16px;
    }

    .rbx-main {
        padding: 16px 12px 34px;
    }

    .not-found-card {
        padding: 18px;
        gap: 16px;
    }

    .not-found-text h1 {
        font-size: 30px;
    }

    .not-found-text p {
        font-size: 17px;
    }

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

    .not-found-back,
    .not-found-home {
        width: 100%;
    }

    .rbx-topnav a {
        min-width: 132px;
        font-size: 14px;
    }

    .game-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fact-grid {
        grid-template-columns: 1fr;
    }

    .tabbar a {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .experience-actions,
    .private-server-controls,
    .profile-actions {
        width: 100%;
    }

    .discover-failed-card {
        padding: 22px 18px 24px;
    }

    .discover-failed-card h2 {
        font-size: 24px;
    }

    .experience-actions form,
    .experience-actions a,
    .experience-actions button {
        width: 100%;
    }

    .experience-actions .play-button-large,
    .experience-actions .ghost-pill.large {
        width: 100%;
    }

    .admin-login-card,
    .profile-card,
    .profile-stat-card,
    .profile-panel,
    .admin-server-card,
    .private-server-row,
    .empty-block {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@keyframes queueCircleOne {
    from {
        transform: translate(0vw, 0vh);
        width: 30vw;
        height: 30vw;
    }
    to {
        transform: translate(0vw, -35vh);
        width: 80vw;
        height: 80vw;
    }
}

@keyframes queueCircleTwo {
    from {
        transform: translate(0vw, 0vh);
        width: 20vw;
        height: 20vw;
    }
    to {
        transform: translate(-45vw, -40vh);
        width: 80vw;
        height: 80vw;
    }
}

@keyframes queueCircleThree {
    from {
        transform: translate(0vw, 0vh);
        width: 20vw;
        height: 20vw;
    }
    to {
        transform: translate(-55vw, -80vh);
        width: 120vw;
        height: 120vw;
    }
}

@keyframes queueFadeCircleIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes queueProgressSlide {
    0% {
        left: -35%;
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0.7;
    }
}