.btn,
button,
input[type='submit'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    padding: 0.64rem 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.14s ease, box-shadow 0.2s ease;
}

.btn:active,
button:active,
input[type='submit']:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
}

.btn:focus-visible,
button:focus-visible,
input[type='submit']:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(8, 15, 25, 0.86);
}

.btn:disabled,
button:disabled,
input[type='submit']:disabled,
.btn[aria-disabled='true'] {
    cursor: not-allowed;
    opacity: 0.65;
    filter: saturate(0.8);
}

.btn-primary,
button,
input[type='submit'] {
    background: linear-gradient(160deg, #4b5968 0%, #3c4857 100%);
    border-color: #34404e;
    color: var(--color-white);
}

.btn-primary:hover,
button:hover,
input[type='submit']:hover {
    background: linear-gradient(160deg, #556577 0%, #42505f 100%);
    border-color: #2f3a46;
    box-shadow: 0 6px 12px rgba(31, 41, 51, 0.18);
}

.btn-secondary {
    background: linear-gradient(160deg, #f3b45f 0%, #eea849 100%);
    border-color: #df983a;
    color: #102033;
}

.btn-secondary:hover {
    background: linear-gradient(160deg, #f6bf70 0%, #f0af58 100%);
    border-color: #d88f30;
    color: #102033;
    box-shadow: 0 6px 12px rgba(238, 168, 73, 0.3);
}

.btn-outline {
    background: var(--color-btn-outline-bg);
    border-color: var(--color-btn-outline-border);
    color: var(--color-btn-outline-text);
}

.btn-outline:hover {
    background: var(--color-btn-outline-hover-bg);
    border-color: var(--color-btn-outline-hover-border);
    color: var(--color-btn-outline-hover-text);
    box-shadow: 0 4px 10px rgba(44, 55, 67, 0.14);
}

.btn-vote {
    background: linear-gradient(160deg, #f57b57 0%, #f46b45 100%);
    border-color: #e45d38;
    color: var(--color-white);
}

.btn-vote:hover {
    background: linear-gradient(160deg, #f78d69 0%, #f57b57 100%);
    border-color: #dc5431;
    box-shadow: 0 8px 16px rgba(244, 107, 69, 0.3);
}

.btn-admin {
    background: linear-gradient(160deg, #2f3b48 0%, #1f2933 100%);
    border-color: #18212a;
    color: #ffffff;
}

.btn-admin:hover {
    background: linear-gradient(160deg, #374556 0%, #27333e 100%);
    border-color: #111922;
    box-shadow: 0 8px 16px rgba(31, 41, 51, 0.28);
}

.form-vertical-stack {
    display: grid;
    gap: var(--space-3);
}

.form-vertical-stack>* {
    margin-bottom: 0;
}

.form-field-stack {
    display: grid;
    gap: var(--space-2);
}

.form-field-stack>* {
    margin-bottom: 0;
}

.form-field-error {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.35;
    color: #bf4c3f;
}

.auth-field__label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.auth-field__label-row label {
    margin-bottom: 0;
}

.auth-recovery-link {
    font-size: 0.86rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

.auth-recovery-link:hover {
    color: var(--color-accent-coral);
    text-decoration: underline;
}

.auth-login__error-alert {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: var(--space-2);
    margin: 0;
    padding: 0.72rem 0.82rem;
    border: 1px solid #cd5345;
    border-left-width: 4px;
    border-radius: var(--radius-sm);
    background: #fff1ef;
    color: #7a221c;
    animation: flash-in 220ms var(--motion-ease) both;
}

.auth-login__error-icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.08rem;
    color: #b03429;
}

.auth-login__error-text {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

.auth-login__actions {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
}

.auth-login__captcha {
    display: grid;
    align-items: start;
    gap: var(--space-2);
    width: 100%;
}

.auth-login__remember {
    margin-top: 0;
}

.auth-login__remember-row {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
}

.auth-login__remember-label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.2;
    white-space: normal;
    cursor: pointer;
}

.auth-login__remember input[type='checkbox'] {
    margin: 0;
    width: auto;
    flex: 0 0 auto;
    min-height: 1rem;
    min-width: 1rem;
}

.auth-login__captcha-message {
    margin: 0;
    font-size: 0.85rem;
    color: #bf4c3f;
}

.auth-login__recovery-line {
    margin-top: 0;
    margin-bottom: 0;
}

.auth-login__register-line {
    margin-top: 0;
    margin-bottom: 0;
}

.auth-register__captcha-bottom {
    margin-top: var(--space-3);
}

.auth-register__actions {
    margin-top: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.auth-register__signin-line {
    margin-top: var(--space-2);
    margin-bottom: 0;
}

.auth-login__error-alert {
    border-color: #c86559;
    background: #3f2023;
    color: #ffdcd7;
}

.auth-login__error-icon {
    color: #ff9d8f;
}

.auth-page {
    width: min(100%, 34rem);
    margin: 0 auto var(--space-5);
}

.auth-card {
    display: grid;
    gap: var(--space-3);
    padding: clamp(var(--space-3), 4vw, var(--space-5));
    border-radius: var(--radius-md);
}

.auth-card:hover {
    transform: none;
}

.auth-card__header {
    display: grid;
    gap: 0.35rem;
}

.auth-card__header h1 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.1;
}

.auth-card__eyebrow {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-oauth-panel {
    display: grid;
    gap: var(--space-2);
}

.auth-oauth-panel__header h2,
.auth-oauth-panel__title,
.auth-form-heading {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}

.auth-oauth-panel__actions {
    display: grid;
    gap: 0.7rem;
}

.auth-oauth-button {
    --auth-oauth-bg: #3c4857;
    --auth-oauth-border: #34404e;
    --auth-oauth-text: #ffffff;
    position: relative;
    display: grid;
    grid-template-columns: 1.7rem minmax(0, 1fr);
    align-items: center;
    min-height: 3.15rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--auth-oauth-border);
    border-radius: var(--radius-sm);
    background: var(--auth-oauth-bg);
    color: var(--auth-oauth-text);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(31, 41, 51, 0.12);
    transition: transform 0.16s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.auth-oauth-button:hover,
.auth-oauth-button:focus-visible {
    color: var(--auth-oauth-text);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(31, 41, 51, 0.18);
    filter: brightness(1.04);
}

.auth-oauth-button:active {
    transform: translateY(0);
}

.auth-oauth-button[aria-disabled='true'] {
    pointer-events: none;
    filter: saturate(0.88);
}

.auth-oauth-button.is-loading::after {
    content: '';
    position: absolute;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.46);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: spin 0.8s linear infinite;
}

.auth-oauth-button__icon {
    display: inline-grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
}

.auth-oauth-button__icon svg {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
}

.auth-oauth-button__text {
    min-width: 0;
    padding-right: 1.45rem;
    text-align: center;
}

.auth-oauth-button--google {
    --auth-oauth-bg: #ffffff;
    --auth-oauth-border: #cfd8e3;
    --auth-oauth-text: #1f2933;
}

.auth-oauth-button--discord {
    --auth-oauth-bg: #5865f2;
    --auth-oauth-border: #4752c4;
}

.auth-oauth-button--microsoft {
    --auth-oauth-bg: #2f2f2f;
    --auth-oauth-border: #1f1f1f;
}

.auth-oauth-button--twitch {
    --auth-oauth-bg: #9146ff;
    --auth-oauth-border: #772ce8;
}

.auth-divider {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    height: 1px;
    background: var(--color-border);
}

.auth-submit-button {
    width: 100%;
    min-height: 3rem;
}

.auth-card__eyebrow,
.auth-divider {
    color: #a9bbcf;
}

.auth-oauth-button--google {
    --auth-oauth-bg: #f8fafc;
    --auth-oauth-border: #d8e0e8;
    --auth-oauth-text: #18212a;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 620px) {
    .auth-page {
        width: 100%;
    }

    .auth-card {
        padding: var(--space-3);
    }

    .auth-oauth-button {
        min-height: 3.25rem;
    }
}

.card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.16s ease;
}

.card:hover {
    border-color: #c6d2dd;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.card-header {
    padding: 0.8rem var(--space-4);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-soft);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.card-body {
    padding: var(--space-3);
}

.card-body> :last-child {
    margin-bottom: 0;
}

.card-body--compact {
    padding: 0.72rem 0.88rem;
}

.card-body--spacious {
    padding: var(--space-4);
}

details>summary:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
    border-radius: var(--radius-sm);
}

.hero {
    background: linear-gradient(140deg, #ffffff 0%, #fff4e6 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-7) var(--space-6);
}

.hero__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: var(--space-3);
}

.hero__subtitle {
    color: var(--color-text-muted);
    max-width: 50rem;
    margin-bottom: var(--space-5);
}

.section-stack {
    display: grid;
    gap: var(--space-4);
}

.section-stack>* {
    margin-bottom: 0;
}

.page-hierarchy {
    gap: var(--space-5);
}

.page-hierarchy>* {
    margin-bottom: 0;
}

.section-surface {
    border-radius: var(--radius-lg);
}

.section-surface--base {
    border: 1px solid #d8e3ee;
    background: linear-gradient(165deg, #ffffff 0%, #f6fafe 100%);
}

.section-surface--elevated {
    border: 1px solid #d5e1ed;
    background: linear-gradient(165deg, #f4f8fc 0%, #ecf3fa 100%);
}

.section-surface--cta {
    border: 1px solid #e8cf9b;
    background: linear-gradient(150deg, #fff8e7 0%, #ffefcf 100%);
    box-shadow: 0 10px 20px rgba(167, 125, 45, 0.14);
}

.section-surface--plain {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.section-surface--band {
    border: 1px solid #d9e5f1;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7fc 100%);
}

.section-surface>.card-header,
.section-surface>.card-body>h2,
.section-surface>.card-body>h3,
.advertise-sitewide__section-header h2,
.shop-section__header h2,
.servers-index-page>section>h2 {
    margin-bottom: var(--space-1);
    font-size: clamp(1.12rem, 1.7vw, 1.34rem);
    line-height: 1.24;
}

.homepage-section__head h2,
.advertise-options__intro h2,
.advertise-sitewide__section-header h2,
.advertise-sitewide__how h2,
.advertise-sitewide__footer-body h2,
.shop-section__header h2,
.shop-page__help .card-header,
.tilt-plus-page .card-header {
    font-size: clamp(1.12rem, 1.75vw, 1.34rem);
    line-height: 1.24;
    margin-bottom: var(--space-1);
}

.homepage-section__lead,
.advertise-options__intro p,
.advertise-sitewide__section-header p,
.advertise-sitewide__how>p,
.advertise-sitewide__footer-body>p,
.shop-section__header p {
    font-size: 0.94rem;
    line-height: 1.45;
}

.section-surface>.card-header {
    border-bottom-color: rgba(93, 121, 149, 0.16);
}

.section-surface>.card-body>p:last-child,
.servers-index-page>section>p:last-child {
    margin-bottom: 0;
}

.servers-index-page>section.section-surface {
    padding: var(--space-3);
}

.servers-index-page>section.section-surface>h2 {
    margin-bottom: var(--space-2);
}

.game-hub-results__body {
    display: grid;
    gap: var(--space-3);
}

.game-hub-results__body>* {
    margin-bottom: 0;
}

.vote-page-layout .vote-page-shell,
.shop-page .shop-page__help,
.shop-page .shop-page__secondary-actions {
    border-radius: var(--radius-lg);
}

.vote-page-layout {
    --server-subheader-sticky-height: 3.15rem;
    --sticky-offset: calc(var(--site-header-sticky-offset) + 3.5rem);
}

.vote-zone {
    display: grid;
    gap: var(--space-3);
}

.vote-zone--primary {
    scroll-margin-top: calc(var(--sticky-offset, 0px) + var(--space-3));
}

.vote-zone--secondary {
    padding-top: var(--space-4);
    border-top: 1px solid #d9e3ee;
}

.vote-zone__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
}

.vote-zone__header h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.vote-zone__stack {
    display: grid;
    gap: var(--space-3);
}

.vote-activity-panel {
    border: 1px solid #d4deea;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #f9fbfe 0%, #edf3f9 100%);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.vote-activity-panel__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    padding: 0.9rem 1rem;
    cursor: pointer;
    list-style: none;
}

.vote-activity-panel__summary::-webkit-details-marker {
    display: none;
}

.vote-activity-panel__summary:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -3px;
}

.vote-activity-panel__copy {
    display: grid;
    min-width: 0;
    gap: 0.18rem;
}

.vote-activity-panel__title {
    color: var(--color-text-primary);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.vote-activity-panel__helper {
    color: var(--color-text-muted);
    font-size: 0.86rem;
    line-height: 1.35;
}

.vote-activity-panel__toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #d7e2ee;
    border-radius: var(--radius-pill);
    color: var(--color-text-muted);
    transition: transform 160ms ease;
}

.vote-activity-panel[open] .vote-activity-panel__toggle {
    transform: rotate(90deg);
}

.vote-activity-panel__body {
    padding: 0 var(--space-3) var(--space-3);
}

.vote-activity-panel__empty {
    margin: 0;
    padding: 0.9rem 1rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.game-search {
    display: grid;
    gap: var(--space-1);
    margin-bottom: var(--space-3);
}

.game-search[aria-busy='true'] {
    opacity: 0.75;
}

.game-search__subtitle {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.84rem;
}

.game-search__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: var(--space-2);
    padding: 0.65rem 0.75rem;
    border: 1px solid #d5dfeb;
    border-radius: var(--radius-md);
    background: linear-gradient(165deg, #f8fbff 0%, #f0f5fb 100%);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease);
}

.game-search__bar:focus-within {
    border-color: #b7c8da;
    box-shadow: 0 0 0 2px rgba(244, 107, 69, 0.12);
}

.game-search__field {
    margin-bottom: 0;
    min-width: 8rem;
    flex: 0 0 auto;
}

.game-search__field--narrow {
    min-width: 7.1rem;
}

.game-search input,
.game-search select {
    border-radius: var(--radius-sm);
    border-color: #c9d4de;
    background: #ffffff;
    padding: 0.5rem 0.65rem;
    min-height: 2.35rem;
    font-size: 0.92rem;
    transition: border-color var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease), background-color var(--motion-base) var(--motion-ease);
}

.game-search input:hover,
.game-search select:hover {
    border-color: #acbccb;
    background: #ffffff;
}

.game-search input:focus,
.game-search select:focus {
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 3px rgba(238, 168, 73, 0.16);
}

.game-search__field--search {
    flex: 1 1 15rem;
    min-width: 13rem;
}

.game-search__field--check {
    display: flex;
    align-items: end;
    min-width: auto;
}

.game-search__field--check label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: 0;
}

.game-search__field--check input[type='checkbox'] {
    width: auto;
}

.game-search__actions {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    margin-bottom: 0;
    margin-left: auto;
    flex: 0 0 auto;
}

.game-search__button {
    white-space: nowrap;
    min-height: 2.35rem;
}

.game-search--toolbar .game-search__field>label {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    color: var(--color-text-muted);
    line-height: 1.1;
}

.server-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    padding: 0.16rem 0.58rem;
    border: 1px solid #c8961a;
    background: linear-gradient(135deg, #ffe58f 0%, #f3c84c 45%, #dca61d 100%);
    color: #3f2a00;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 212, 118, 0.35), 0 0 10px rgba(224, 170, 42, 0.25);
}

.gaming-update-topic {
    display: inline-flex;
    align-items: center;
    border: 1px solid #3a5168;
    border-radius: var(--radius-pill);
    background: linear-gradient(165deg, #1b2b3d 0%, #172638 100%);
    color: #d3deea;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.1;
    padding: 0.34rem 0.72rem;
}

.server-badge-gold__star {
    color: #8c5e00;
    font-size: 0.76rem;
    line-height: 1;
}

.server-badge-gold__label {
    white-space: nowrap;
}

.server-badge-gold--inline {
    margin-left: 0.35rem;
    vertical-align: middle;
}

.state-message {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: var(--space-4);
}

.flash-stack .state-message {
    animation: flash-in 220ms var(--motion-ease) both;
}

.flash-stack {
    display: grid;
    margin-bottom: var(--space-4);
}

.flash-stack .state-message__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3);
    align-items: start;
}

.flash-stack .state-message__icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 1px rgba(31, 41, 51, 0.08);
}

.flash-stack .state-message__icon .ui-icon {
    width: 1rem;
    height: 1rem;
}

.flash-stack .state-message__content {
    display: grid;
    gap: 0.2rem;
}

.flash-stack .state-message__title {
    margin-bottom: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #334250;
}

.flash-stack .state-message__text {
    margin-bottom: 0;
    color: #243240;
    font-weight: 500;
    line-height: 1.45;
}

.state-message[data-reward-earned='1'],
.state-message.server-copy-feedback {
    position: relative;
    overflow: hidden;
}

.state-message.is-reward-highlight {
    animation: reward-earned-highlight 720ms var(--motion-ease) both;
}

.reward-earned-burst {
    position: absolute;
    inset: -25%;
    pointer-events: none;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(118, 182, 137, 0.28) 0%, rgba(118, 182, 137, 0.12) 35%, rgba(118, 182, 137, 0) 70%);
    animation: reward-earned-burst 820ms var(--motion-ease) both;
}

.reward-earned-badge {
    position: absolute;
    top: 0.35rem;
    right: 0.45rem;
    pointer-events: none;
    border-radius: var(--radius-pill);
    padding: 0.16rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1f3b2a;
    background: #dcf3e4;
    border: 1px solid #99c8a8;
    box-shadow: 0 6px 14px rgba(44, 90, 58, 0.18);
    animation: reward-earned-badge 860ms var(--motion-ease) both;
}

.state-message>*:last-child {
    margin-bottom: 0;
}

.tilt-plus-upsell {
    display: grid;
    gap: var(--space-2);
}

.tilt-plus-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    border: 1px solid #d9ab3a;
    background: linear-gradient(150deg, #ffe8a6 0%, #f2c560 100%);
    color: #6d4d07;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
    padding: 0.14rem 0.46rem;
    vertical-align: middle;
    white-space: nowrap;
}

.tilt-plus-upsell__actions {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tilt-plus-welcome {
    border-color: #c8961a;
    background: linear-gradient(145deg, #fff8df 0%, #ffe9b8 45%, #ffd98f 100%);
    box-shadow: 0 10px 24px rgba(200, 150, 26, 0.22);
}

.tilt-plus-welcome__title {
    margin-bottom: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 800;
    color: #5e3f00;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.tilt-plus-manage-link {
    min-height: 1.9rem;
    padding: 0.24rem 0.55rem;
    font-size: 0.8rem;
    border-radius: var(--radius-pill);
    vertical-align: middle;
}

.tilt-plus-cancel-link {
    font-size: 0.72rem;
    color: #7f8d9b;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.tilt-plus-cancel-link:hover {
    color: #5f6d7c;
    text-decoration: underline;
}

.tilt-plus-section-intro {
    margin: 0 0 var(--space-2);
    color: var(--color-text-muted);
}

.tilt-plus-audience .card-body {
    padding-top: var(--space-2);
}

.tilt-plus-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-2);
}

.tilt-plus-audience-card {
    border: 1px solid #d5e1ed;
    border-radius: var(--radius-md);
    background: linear-gradient(165deg, #ffffff 0%, #f5f9fd 100%);
    padding: var(--space-2);
}

.tilt-plus-audience-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.tilt-plus-audience-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.tilt-plus-final-cta .card-body {
    display: grid;
    gap: var(--space-2);
}

.tilt-plus-final-cta .card-body h2,
.tilt-plus-final-cta .card-body p {
    margin: 0;
}

.tilt-plus-page {
    max-width: 100%;
}

.tilt-plus-page .flash-stack {
    width: min(100%, 92rem);
    margin-inline: auto;
}

.tilt-plus-page {
    --tilt-plus-small-icon: 2rem;
    --tilt-plus-trust-icon: 2rem;
    --tilt-plus-small-icon-gap: 0.72rem;
}

.tilt-plus-shell {
    position: relative;
    width: min(100%, 92rem);
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(75, 119, 163, 0.55);
    border-radius: 0.75rem;
    background:
        radial-gradient(circle at 76% 18%, rgba(245, 147, 37, 0.22) 0, rgba(245, 147, 37, 0.06) 18rem, transparent 32rem),
        radial-gradient(circle at 18% 8%, rgba(37, 113, 186, 0.22) 0, transparent 26rem),
        linear-gradient(145deg, #071421 0%, #0a1d30 44%, #071523 100%);
    box-shadow:
        0 24px 80px rgba(1, 7, 15, 0.58),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035),
        0 0 42px rgba(45, 121, 197, 0.16);
    color: #eef5ff;
}

.tilt-plus-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(136, 173, 211, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(136, 173, 211, 0.14) 1px, transparent 1px);
    background-size: 2rem 2rem;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 82%);
}

.tilt-plus-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.48);
}

.tilt-plus-hero,
.tilt-plus-panel,
.tilt-plus-helper {
    position: relative;
    z-index: 1;
}

.tilt-plus-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(20rem, 0.42fr);
    gap: clamp(1.25rem, 3vw, 3rem);
    align-items: center;
    min-height: 19.25rem;
    padding: clamp(1.65rem, 3vw, 2.8rem) clamp(1.5rem, 4vw, 3.75rem) 2.9rem;
    overflow: hidden;
    background-image: url('/assets/images/components/tilt-plus-background.png');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(66, 103, 140, 0.62);
}

.tilt-plus-hero::before {
    content: none;
}

.tilt-plus-hero::after {
    content: none;
}

.tilt-plus-hero__content {
    position: relative;
    z-index: 3;
    display: grid;
    justify-items: start;
    gap: 0.95rem;
    transform: translateY(1.45rem);
}

.tilt-plus-pill,
.tilt-plus-section-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffad29;
    font-weight: 800;
}

.tilt-plus-pill {
    border: 1px solid rgba(245, 150, 38, 0.7);
    border-radius: 999px;
    padding: 0.34rem 0.95rem;
    background: linear-gradient(150deg, rgba(44, 31, 14, 0.72), rgba(16, 26, 38, 0.74));
    box-shadow: 0 0 22px rgba(244, 152, 36, 0.16);
    font-size: 0.78rem;
    line-height: 1;
}

.tilt-plus-hero h1 {
    margin: 0;
    color: #f6f8fb;
    font-size: clamp(2.8rem, 5.5vw, 4.45rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}

.tilt-plus-hero__subtitle {
    margin: 0;
    color: #c7d3df;
    font-size: clamp(1.05rem, 1.65vw, 1.28rem);
    line-height: 1.45;
}

.tilt-plus-hero__actions,
.tilt-plus-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin: 0;
}

.tilt-plus-btn {
    min-height: 3.3rem;
    border-radius: 0.4rem;
    padding: 0.78rem 1.45rem;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: transform 160ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.tilt-plus-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.tilt-plus-btn img {
    width: 1.3rem;
    height: 1.3rem;
    object-fit: contain;
}

.tilt-plus-btn--primary img {
    transform: scale(1.7);
    transform-origin: center;
}

.tilt-plus-btn--primary {
    border: 1px solid #ffb547;
    background: linear-gradient(135deg, #ffc34f 0%, #f99822 52%, #f07a18 100%);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(235, 125, 24, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.tilt-plus-btn--primary:hover {
    color: #ffffff;
    box-shadow: 0 15px 34px rgba(235, 125, 24, 0.36), 0 0 0 3px rgba(245, 153, 34, 0.15);
}

.tilt-plus-btn--outline,
.tilt-plus-btn--shop {
    border: 1px solid rgba(114, 150, 187, 0.7);
    background: rgba(5, 17, 30, 0.56);
    color: #f3f7fc;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.tilt-plus-btn--outline:hover {
    border-color: rgba(169, 200, 232, 0.88);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(96, 150, 205, 0.14);
}

.tilt-plus-btn--shop {
    min-width: 18.5rem;
    justify-content: center;
    border-color: rgba(249, 146, 26, 0.9);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(249, 146, 26, 0.1);
}

.tilt-plus-btn--shop:hover {
    border-color: #ffb54a;
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(249, 146, 26, 0.14);
}

.tilt-plus-trust {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
    width: min(100%, 41rem);
    padding: 0.35rem 0 0;
    list-style: none;
    color: #b6c4d2;
    font-size: 0.9rem;
}

.tilt-plus-trust li {
    display: inline-flex;
    align-items: center;
    gap: var(--tilt-plus-small-icon-gap);
    line-height: 1.2;
    white-space: nowrap;
}

.tilt-plus-trust img {
    width: var(--tilt-plus-trust-icon);
    height: var(--tilt-plus-trust-icon);
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 8px rgba(248, 145, 28, 0.32));
}

.tilt-plus-hero__visual {
    display: none;
}

.tilt-plus-hero__visual::before {
    content: none;
}

.tilt-plus-hero__visual img {
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 150%;
    max-width: none;
    object-fit: cover;
    object-position: right top;
    transform-origin: top right;
    filter: saturate(1.08) contrast(1.04);
}

.tilt-plus-panel {
    margin: 1.35rem 0.85rem 0.85rem;
    border: 1px solid rgba(64, 105, 145, 0.48);
    border-radius: 0.6rem;
    background: linear-gradient(180deg, rgba(7, 23, 38, 0.74) 0%, rgba(5, 19, 34, 0.82) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    padding: clamp(1.1rem, 2vw, 1.45rem);
}

.tilt-plus-section-label {
    padding-left: 0.4rem;
    font-size: 0.82rem;
    line-height: 1.2;
}

.tilt-plus-benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.tilt-plus-benefit-card,
.tilt-plus-audience-card,
.tilt-plus-promo {
    border: 1px solid rgba(66, 103, 140, 0.62);
    background:
        radial-gradient(circle at 50% 6%, rgba(245, 148, 29, 0.1), transparent 8rem),
        linear-gradient(165deg, rgba(8, 30, 50, 0.82), rgba(5, 21, 36, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 14px 32px rgba(0, 0, 0, 0.18);
}

.tilt-plus-benefit-card {
    display: grid;
    grid-template-rows: auto 2.6rem 3.9rem;
    justify-items: center;
    align-content: start;
    min-height: 15.35rem;
    border-radius: 0.55rem;
    padding: 1.05rem 1rem 1.25rem;
    text-align: center;
}

.tilt-plus-card-icon {
    display: grid;
    place-items: center;
    width: 8.1rem;
    height: 8.1rem;
    margin: 0 auto 0.8rem;
}

.tilt-plus-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.28);
    transform-origin: center;
}

.tilt-plus-benefit-card h3,
.tilt-plus-audience-card h3 {
    margin: 0;
    color: #f4f8fc;
    font-size: 1rem;
    line-height: 1.25;
}

.tilt-plus-benefit-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    width: 100%;
}

.tilt-plus-benefit-card p,
.tilt-plus-audience-card p,
.tilt-plus-promo p,
.tilt-plus-helper {
    color: #c3cfdb;
    line-height: 1.45;
}

.tilt-plus-benefit-card p {
    margin: 0.7rem 0 0;
    font-size: 0.88rem;
    display: flex;
    align-items: start;
    justify-content: center;
    min-height: 3.1rem;
    max-width: 11.5rem;
}

.tilt-plus-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.7rem;
    border-left: 3px solid #ffa42e;
    border-radius: 0.55rem;
    padding: 0.85rem 1.05rem;
}

.tilt-plus-promo__copy {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.tilt-plus-promo__text {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.tilt-plus-promo__text h3 {
    margin: 0;
    color: #fff5df;
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
    line-height: 1.18;
    font-weight: 900;
}

.tilt-plus-promo__icon,
.tilt-plus-audience-card__icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 164, 46, 0.74);
    border-radius: 999px;
    background: rgba(8, 23, 36, 0.78);
    box-shadow: 0 0 18px rgba(248, 145, 28, 0.16);
}

.tilt-plus-promo__icon {
    width: 5.6rem;
    height: 5.6rem;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.tilt-plus-promo__icon img {
    width: 5.65rem;
    height: 5.65rem;
    transform: none;
    transform-origin: center;
}

.tilt-plus-promo p {
    margin: 0;
    max-width: 48rem;
    font-size: 0.92rem;
}

.tilt-plus-promo__secondary {
    color: #aebdcb;
    font-size: 0.84rem;
}

.tilt-plus-promo .tilt-plus-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.tilt-plus-promo .tilt-plus-btn--primary {
    animation: tilt-plus-promo-button-pulse 2.1s ease-in-out infinite;
}

@keyframes tilt-plus-promo-button-pulse {
    0%,
    100% {
        box-shadow: 0 10px 22px rgba(244, 107, 69, 0.24);
    }

    50% {
        box-shadow: 0 14px 30px rgba(244, 107, 69, 0.42), 0 0 0 5px rgba(244, 107, 69, 0.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tilt-plus-promo .tilt-plus-btn--primary {
        animation: none;
    }
}

.tilt-plus-audience {
    margin-top: 0.95rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(76, 113, 149, 0.42);
}

.tilt-plus-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.tilt-plus-audience-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.05rem;
    align-items: center;
    min-height: 7rem;
    border-radius: 0.55rem;
    padding: 0.95rem;
    text-align: left;
}

.tilt-plus-audience-card__icon {
    width: 5.2rem;
    height: 5.2rem;
    align-self: center;
}

.tilt-plus-audience-card__icon .ui-icon {
    width: 3.15rem;
    height: 3.15rem;
    color: #ff9f24;
    stroke-width: 1.8;
    filter: drop-shadow(0 0 12px rgba(248, 145, 28, 0.38));
}

.tilt-plus-audience-card p {
    margin: 0.3rem 0 0;
    font-size: 0.88rem;
}

.tilt-plus-helper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: -0.15rem 0 0;
    padding: 0 1.5rem 1.05rem;
    font-size: 0.88rem;
    line-height: 1.35;
}

.tilt-plus-helper img {
    width: 2.85rem;
    height: 2.85rem;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(248, 145, 28, 0.32));
}

.tilt-plus-helper a {
    color: #ffa72e;
    font-weight: 800;
    text-decoration: none;
}

.tilt-plus-helper a:hover {
    color: #ffc65d;
    text-decoration: underline;
}

@media (max-width: 1180px) {
    .tilt-plus-hero {
        grid-template-columns: minmax(0, 0.62fr) minmax(16rem, 0.38fr);
    }

    .tilt-plus-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tilt-plus-benefit-card {
        min-height: 13.5rem;
    }
}

@media (max-width: 900px) {
    .tilt-plus-hero {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: 0;
    }

    .tilt-plus-hero__visual {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0.2;
    }

    .tilt-plus-hero__visual::before {
        background: linear-gradient(90deg, rgba(7, 20, 33, 0.94) 0%, rgba(7, 20, 33, 0.78) 54%, rgba(7, 20, 33, 0.44) 100%);
    }

    .tilt-plus-hero__content {
        max-width: 42rem;
    }

    .tilt-plus-trust {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }

    .tilt-plus-benefits,
    .tilt-plus-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tilt-plus-promo {
        align-items: stretch;
        flex-direction: column;
    }

    .tilt-plus-promo .tilt-plus-btn,
    .tilt-plus-btn--shop {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .tilt-plus-shell {
        border-radius: 0.65rem;
    }

    .tilt-plus-hero {
        padding: 1.5rem 1rem 1rem;
    }

    .tilt-plus-hero h1 {
        font-size: clamp(2.25rem, 13vw, 3rem);
    }

    .tilt-plus-hero__actions,
    .tilt-plus-hero__actions .tilt-plus-btn {
        width: 100%;
    }

    .tilt-plus-hero__actions .tilt-plus-btn {
        justify-content: center;
    }

    .tilt-plus-trust {
        display: grid;
        gap: 0.65rem;
    }

    .tilt-plus-panel {
        margin: 0 0.55rem 0.75rem;
        padding: 0.85rem;
    }

    .tilt-plus-benefits,
    .tilt-plus-audience-grid {
        grid-template-columns: 1fr;
    }

    .tilt-plus-benefit-card {
        min-height: 0;
    }

    .tilt-plus-promo__copy,
    .tilt-plus-audience-card {
        align-items: start;
    }

    .tilt-plus-audience-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .tilt-plus-helper {
        justify-content: flex-start;
        padding-inline: 1rem;
    }
}

.credit-topup-form {
    display: grid;
    gap: var(--space-2);
    max-width: 28rem;
}

.credit-topup-form__actions {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.state-message--empty {
    background: #fff8ef;
    border-color: #f2d7ae;
}

.state-message--loading {
    background: linear-gradient(165deg, #f5f8fc 0%, #edf3f9 100%);
    border-color: #d3dee9;
}

.async-status {
    width: 100%;
    align-items: flex-start;
    gap: var(--space-2);
}

.async-status__spinner {
    margin-top: 0.15rem;
    margin-left: auto;
    flex: 0 0 auto;
}

.async-status__content {
    flex: 1 1 auto;
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.async-status__text {
    color: #2f4255;
    font-weight: 600;
    line-height: 1.35;
}

.async-status__stage {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.25;
}

.async-status__progress {
    margin-top: var(--space-1);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
}

.pagination p {
    margin-bottom: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.homepage-directory {
    display: grid;
    gap: var(--space-5);
}

.homepage-section {
    display: grid;
    gap: var(--space-3);
    border-radius: var(--radius-lg);
    padding: clamp(0.95rem, 2vw, 1.3rem);
    border: 1px solid #d9e4ef;
}

.homepage-section--base {
    background: linear-gradient(165deg, #ffffff 0%, #f7fafd 100%);
}

.homepage-section--elevated {
    background: linear-gradient(165deg, #f4f8fc 0%, #edf3fa 100%);
}

.homepage-section--cta {
    background: linear-gradient(150deg, #fff7e3 0%, #ffefca 100%);
    border-color: #ecd5a3;
    box-shadow: 0 10px 20px rgba(164, 126, 52, 0.14);
}

.homepage-section--plain {
    border: 0;
    border-radius: 0;
    padding: 0.25rem 0;
    background: transparent;
}

.homepage-section--band {
    border-color: #dbe6f1;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7fc 100%);
}

.homepage-section__head {
    display: grid;
    gap: 0.42rem;
    margin-bottom: var(--space-1);
}

.homepage-section__kicker {
    margin-bottom: 0;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #607387;
}

.homepage-section__head h2 {
    margin-bottom: 0;
    font-size: clamp(1.15rem, 1.85vw, 1.36rem);
    line-height: 1.25;
}

.homepage-section__content>*:last-child {
    margin-bottom: 0;
}

.homepage-empty-state {
    margin-bottom: 0;
    display: grid;
    gap: var(--space-1);
}

.homepage-empty-state__hint {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.homepage-empty-state__actions {
    margin-bottom: 0;
}

.homepage-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: 0;
    max-width: 100%;
}

.homepage-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: start;
    gap: var(--space-4);
    max-width: 100%;
    box-sizing: border-box;
}

.homepage-hero__content {
    margin-bottom: 0;
    min-width: 0;
}

.homepage-hero__stats {
    margin-bottom: 0;
    border: 1px solid #d6e1ec;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #f8fbfe 0%, #edf3f9 100%);
    padding: var(--space-3);
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.homepage-hero__stats-title {
    margin-bottom: var(--space-2);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5d7186;
}

.homepage-hero__eyebrow {
    margin-bottom: var(--space-2);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.homepage-hero .hero__title {
    max-width: 18ch;
    margin-bottom: var(--space-3);
    overflow-wrap: anywhere;
}

.homepage-hero .hero__subtitle {
    max-width: 56ch;
    margin-bottom: var(--space-4);
}

.homepage-hero--games {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2);
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
}

.homepage-hero--games .hero__title {
    max-width: 100%;
    margin-bottom: var(--space-2);
}

.homepage-hero--games .hero__subtitle {
    max-width: 68ch;
    margin-bottom: var(--space-3);
}

.homepage-hero--games .homepage-hero__actions {
    margin-top: 0;
}

.homepage-section__lead {
    margin-bottom: var(--space-2);
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.homepage-contents {
    margin-bottom: var(--space-4);
    padding: var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
}

.homepage-contents__title {
    margin-bottom: var(--space-2);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.homepage-contents__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: var(--space-2);
}

.homepage-contents__list li {
    margin: 0;
}

.homepage-contents__list a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.25rem 0.15rem;
}

.platform-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.platform-stat-card {
    margin-bottom: 0;
    padding: var(--space-3);
    border: 1px solid #d4deea;
    border-radius: var(--radius-sm);
    background: linear-gradient(160deg, #f9fbfe 0%, #edf3f9 100%);
    box-shadow: 0 6px 14px rgba(23, 38, 56, 0.08);
    display: grid;
    gap: 0.22rem;
    align-content: start;
    min-width: 0;
}

.platform-stat-card h3 {
    margin-bottom: 0;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.platform-stat-card__value {
    margin-bottom: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    overflow-wrap: anywhere;
}

.platform-stat-card__hint {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.ad-banner-region {
    margin-bottom: var(--space-3);
}

.ad-banner-region--primary-context {
    margin-top: var(--space-1);
    margin-bottom: var(--space-3);
}

.server-detail-primary-banner {
    margin-bottom: var(--space-2);
}

.ad-banner-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: linear-gradient(165deg, #fafcfe 0%, #f2f7fc 100%);
    padding: 0.42rem;
}

.ad-banner-slot__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ad-banner-slot__image {
    display: block;
    width: auto;
    max-width: min(100%, 728px);
    height: auto;
    max-height: 90px;
    border-radius: 0.3rem;
}

.ad-banner-slot--server_banner .ad-banner-slot__image {
    max-width: min(100%, 468px);
    max-height: 60px;
}

.homepage-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: var(--space-4);
}

.game-directory__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.game-directory__header h2 {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

.game-directory__search {
    position: relative;
    display: block;
    width: clamp(15rem, 24vw, 18.75rem);
    max-width: 100%;
    margin: 0;
    z-index: 5;
}

.game-directory__search-icon {
    position: absolute;
    left: 0.82rem;
    top: 50%;
    width: 0.92rem;
    height: 0.92rem;
    border: 2px solid currentColor;
    border-radius: var(--radius-pill);
    color: #7890aa;
    transform: translateY(-55%);
    pointer-events: none;
}

.game-directory__search-icon::after {
    content: '';
    position: absolute;
    right: -0.32rem;
    bottom: -0.24rem;
    width: 0.42rem;
    height: 2px;
    border-radius: var(--radius-pill);
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: center;
}

.game-directory__search input {
    width: 100%;
    min-height: 2.45rem;
    margin: 0;
    border: 1px solid #c7d5e3;
    border-radius: var(--radius-pill);
    background: #f8fbff;
    color: var(--color-text-primary);
    padding: 0.54rem 0.85rem 0.54rem 2.35rem;
    font-size: 0.92rem;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transition: border-color var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease), background-color var(--motion-base) var(--motion-ease);
}

.game-directory__search input::placeholder {
    color: #6f8194;
}

.game-directory__search input:focus {
    border-color: var(--color-accent-orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(238, 168, 73, 0.16);
    outline: none;
}

.game-directory__quick-select {
    position: absolute;
    top: calc(100% + 0.42rem);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 0.18rem;
    width: 100%;
    max-width: 100%;
    max-height: 21.875rem;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0.38rem;
    border: 1px solid var(--color-menu-border);
    border-radius: var(--radius-md);
    background: var(--color-menu-bg);
    box-shadow: 0 18px 42px rgba(5, 12, 22, 0.46), 0 0 0 1px rgba(243, 180, 95, 0.06);
    scrollbar-color: #3a5066 #101a27;
    scrollbar-width: thin;
    animation: game-directory-quick-select-in 150ms var(--motion-ease) both;
}

.game-directory__quick-select::-webkit-scrollbar {
    width: 0.45rem;
}

.game-directory__quick-select::-webkit-scrollbar-track {
    background: #101a27;
    border-radius: var(--radius-pill);
}

.game-directory__quick-select::-webkit-scrollbar-thumb {
    background: #3a5066;
    border-radius: var(--radius-pill);
}

.game-directory__quick-select::-webkit-scrollbar-thumb:hover {
    background: #49647f;
}

.game-directory__quick-select[hidden] {
    display: none;
}

.game-directory__quick-select-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.72rem;
    width: 100%;
    min-height: 3.65rem;
    padding: 0.5rem 0.65rem;
    border: 1px solid transparent;
    border-left-width: 2px;
    border-radius: calc(var(--radius-md) - 0.25rem);
    background: transparent;
    color: var(--color-text-primary);
    box-shadow: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.game-directory__quick-select-option::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    bottom: 0.55rem;
    left: 0.35rem;
    width: 2px;
    border-radius: var(--radius-pill);
    background: var(--color-accent-orange);
    opacity: 0;
    transition: opacity 150ms ease;
}

.game-directory__quick-select-option:hover,
.game-directory__quick-select-option:focus-visible,
.game-directory__quick-select-option.is-active {
    border-color: rgba(243, 180, 95, 0.42);
    border-left-color: var(--color-accent-orange);
    background: var(--color-menu-link-hover);
    color: var(--color-text-primary);
    transform: none;
    box-shadow: inset 2px 0 0 var(--color-accent-orange), inset 0 0 0 1px rgba(243, 180, 95, 0.08);
    outline: none;
}

.game-directory__quick-select-option:hover::before,
.game-directory__quick-select-option:focus-visible::before,
.game-directory__quick-select-option.is-active::before {
    opacity: 1;
}

.game-directory__quick-select-option.is-active {
    border-left-color: var(--color-accent-orange);
    background: linear-gradient(160deg, rgba(243, 180, 95, 0.18) 0%, rgba(34, 51, 70, 0.92) 100%);
}

.game-directory__quick-select-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 2.55rem;
    width: 2.55rem;
    height: 2.55rem;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(167, 181, 197, 0.16);
    border-radius: var(--radius-sm);
    background: linear-gradient(160deg, #1c2d40 0%, #172638 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.game-directory__quick-select-icon .homepage-game-card__visual {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: inherit;
    box-shadow: none;
}

.game-directory__quick-select-icon .homepage-game-card__visual::after {
    content: none;
}

.game-directory__quick-select-icon .game-logo,
.game-directory__quick-select-icon .game-icon,
.game-directory__quick-select-icon img,
.game-directory__quick-select-icon svg {
    max-width: 1.82rem;
    max-height: 1.82rem;
}

.game-directory__quick-select-copy {
    display: grid;
    gap: 0.16rem;
    min-width: 0;
}

.game-directory__quick-select-name {
    overflow: hidden;
    color: var(--color-text-primary);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-directory__quick-select-meta,
.game-directory__quick-select-empty {
    color: var(--color-text-muted);
    font-size: 0.83rem;
    line-height: 1.25;
}

.game-directory__quick-select-empty {
    display: grid;
    gap: 0.18rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid rgba(167, 181, 197, 0.12);
    border-radius: calc(var(--radius-md) - 0.25rem);
    background: linear-gradient(160deg, rgba(28, 42, 59, 0.86) 0%, rgba(18, 30, 44, 0.86) 100%);
}

.game-directory__quick-select-empty strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.game-directory__quick-select-empty span {
    color: var(--color-text-muted);
}

@keyframes game-directory-quick-select-in {
    from {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-directory__empty {
    margin-top: var(--space-4);
}

.game-directory__empty p {
    margin: 0;
}

.game-directory__empty p + p {
    margin-top: 0.2rem;
    color: var(--color-text-muted);
}

.homepage-game-card {
    margin-bottom: 0;
    border: 1px solid #d7e1eb;
    border-radius: var(--radius-md);
    padding: var(--space-4);
    background: linear-gradient(155deg, #ffffff 0%, #f5f9fd 100%);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    transition: transform var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease), border-color var(--motion-base) var(--motion-ease), background var(--motion-base) var(--motion-ease);
    isolation: isolate;
}

.homepage-game-card>* {
    position: relative;
    z-index: 1;
}

.homepage-game-card--has-bg {
    border-color: rgba(var(--game-accent-rgb), 0.48);
    background: var(--game-card-bg-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 12px 24px rgba(31, 41, 51, 0.18);
    color: #ffffff;
}

.homepage-game-card--has-bg::before {
    content: none;
}

.homepage-game-card::after {
    content: '';
    position: absolute;
    inset: auto -20% -55% auto;
    width: 11rem;
    height: 11rem;
    background: radial-gradient(circle, rgba(var(--game-accent-rgb), 0.18) 0%, rgba(var(--game-accent-rgb), 0) 70%);
    pointer-events: none;
}

.homepage-game-card--has-bg::after {
    inset: auto -18% -48% auto;
    background: radial-gradient(circle, rgba(var(--game-accent-rgb), 0.35) 0%, rgba(var(--game-accent-rgb), 0) 72%);
    z-index: 0;
}

.homepage-game-card__visual {
    width: 5.15rem;
    height: 5.15rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--game-accent-rgb), 0.32);
    background: linear-gradient(160deg, rgba(var(--game-accent-rgb), 0.15) 0%, rgba(var(--game-accent-rgb), 0.06) 100%);
    box-shadow: 0 8px 16px rgba(var(--game-accent-rgb), 0.17);
    margin-bottom: var(--space-2);
    overflow: hidden;
    padding: 0.12rem;
    position: relative;
    z-index: 1;
    transition: transform var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease);
}

.homepage-game-card__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
    pointer-events: none;
}

.homepage-game-card__logo {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius-md) - 0.12rem);
    object-fit: contain;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.homepage-game-card h3 {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    font-size: 1.08rem;
    line-height: 1.2;
    color: #22364a;
}

.homepage-game-card__count {
    margin-bottom: 0;
    color: #4a6075;
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.homepage-game-card__meta {
    margin-bottom: 0;
    color: #42566a;
    font-size: 0.84rem;
    position: relative;
    z-index: 1;
}

.homepage-game-card__actions {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.44rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: var(--space-1);
}

.homepage-game-card__actions .btn {
    min-width: 0;
    min-height: 2.2rem;
    padding-inline: 0.72rem;
}

.homepage-game-card__actions .btn-secondary {
    border-color: #d88f30;
    box-shadow: 0 8px 14px rgba(238, 168, 73, 0.22);
    font-weight: 700;
}

.homepage-game-card__actions .btn-secondary:hover {
    box-shadow: 0 10px 18px rgba(238, 168, 73, 0.3);
}

.homepage-game-card__links {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.9rem;
    position: relative;
    z-index: 1;
}

.homepage-game-card--has-bg h3,
.homepage-game-card--has-bg .homepage-game-card__count,
.homepage-game-card--has-bg .homepage-game-card__meta,
.homepage-game-card--has-bg .ui-inline {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

.homepage-game-card--has-bg .homepage-game-card__visual {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(7, 13, 20, 0.26);
}

.events-page {
    display: grid;
    gap: var(--space-4);
}

.events-page__hero {
    border-color: #33485d;
    background: linear-gradient(150deg, #1b2530 0%, #19242f 55%, #18232d 100%);
    box-shadow: 0 12px 24px rgba(10, 16, 23, 0.34);
}

.events-page__hero .card-body {
    color: #dce7f2;
}

.events-page__hero-head {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.events-page__hero-head h1 {
    margin-bottom: 0;
    color: #f3f8ff;
}

.events-page__intro {
    margin-bottom: var(--space-2);
    color: #b9cadc;
    max-width: 72ch;
}

.events-page__meta {
    margin-bottom: 0;
    color: #91a8bf;
    font-size: 0.86rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-3);
}

.events-card {
    margin: 0;
    border: 1px solid #2f4356;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #1b2733 0%, #182430 100%);
    color: #e7f0f8;
    box-shadow: 0 10px 22px rgba(9, 14, 20, 0.28);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
}

.events-card__image-wrap {
    display: block;
    background: #223243;
    border-bottom: 1px solid #2f4356;
    min-height: 9.5rem;
}

.events-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 9.5rem;
    max-height: 9.5rem;
    object-fit: cover;
}

.events-card__image-placeholder {
    display: grid;
    place-items: center;
    min-height: 9.5rem;
    color: #9eb2c7;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.events-card__body {
    padding: var(--space-3);
    display: grid;
    gap: var(--space-2);
}

.events-card__time {
    margin: 0;
    color: #94abc2;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.events-card__title {
    margin-bottom: 0;
    font-size: 1.08rem;
    line-height: 1.25;
}

.events-card__title a {
    color: #edf4fb;
    text-decoration: none;
}

.events-card__title a:hover {
    color: #f7fbff;
    text-decoration: underline;
}

.events-card__excerpt {
    margin-bottom: 0;
    color: #b8c9da;
    font-size: 0.92rem;
}

.events-card__server {
    margin-bottom: 0;
    color: #9cb3ca;
    font-size: 0.84rem;
}

.events-card__server a {
    color: #cde2f6;
}

.events-card__actions {
    margin-bottom: 0;
    margin-top: var(--space-1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.events-card__actions .btn-secondary {
    min-height: 2.2rem;
    padding-inline: 0.8rem;
    border-color: #7ea49c;
    background: linear-gradient(160deg, #9dc2ba 0%, #88b0a8 100%);
    color: #173238;
}

.events-card__server-link {
    color: #a8bed3;
    font-size: 0.82rem;
}

.events-card__actions .btn[aria-disabled='true'] {
    cursor: default;
    opacity: 0.75;
    pointer-events: none;
}

.events-detail-page {
    display: grid;
    gap: var(--space-4);
}

.events-detail-hero {
    border-color: #33485d;
    background: linear-gradient(155deg, #1b2530 0%, #19242f 58%, #18232d 100%);
    color: #e6f0f9;
    overflow: hidden;
}

.events-detail-hero__cover-wrap {
    border-bottom: 1px solid #344a5f;
    background: #202f40;
}

.events-detail-hero__cover {
    display: block;
    width: 100%;
    max-height: 21rem;
    object-fit: cover;
}

.events-detail-hero__body h1 {
    margin-bottom: var(--space-2);
    color: #f5f9ff;
}

.events-detail-hero__eyebrow {
    margin-bottom: var(--space-2);
    color: #96aec6;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.events-detail-hero__time {
    margin-bottom: var(--space-2);
    color: #bdd0e3;
    font-size: 0.94rem;
}

.events-detail-hero__summary {
    margin-bottom: var(--space-3);
    color: #c7d7e8;
    max-width: 72ch;
}

.events-detail-hero__actions {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.events-detail-hero__server-link {
    color: #b3c8dd;
    font-size: 0.86rem;
}

.events-detail-shell {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
}

.events-detail-main .card-body {
    display: grid;
    gap: var(--space-3);
}

.events-detail-meta {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
}

.events-detail-meta div {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg-soft);
    padding: var(--space-2);
}

.events-detail-meta dt {
    margin-bottom: 0.2rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.events-detail-meta dd {
    margin: 0;
    color: var(--color-primary-dark);
    font-weight: 600;
}

.events-detail-content {
    display: grid;
    gap: var(--space-2);
}

.events-detail-content p {
    margin-bottom: 0;
    color: var(--color-text);
    line-height: 1.65;
}

.events-detail-sidebar {
    position: sticky;
    top: 5.7rem;
}

.events-detail-server-list {
    margin: 0;
    display: grid;
    gap: var(--space-2);
}

.events-detail-server-list div {
    display: grid;
    gap: 0.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg-soft);
    padding: var(--space-2);
}

.events-detail-server-list dt {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.events-detail-server-list dd {
    margin: 0;
    color: var(--color-primary-dark);
}

.events-detail-sidebar__copy {
    width: 100%;
}

.events-detail-sidebar__actions {
    margin: var(--space-3) 0 0;
}

.events-detail-sidebar__actions .btn {
    width: 100%;
}

.events-join-card .card-body {
    display: grid;
    gap: var(--space-2);
}

.events-join-card ol {
    margin: 0 0 0 var(--space-3);
}

.events-join-card__actions {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.events-detail-more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2);
}

.events-detail-more-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg-soft);
    padding: var(--space-2);
}

.events-detail-more-item h3 {
    margin-bottom: var(--space-1);
    font-size: 1rem;
}

.events-detail-more-item p {
    margin-bottom: 0;
}

.events-detail-more-item__time {
    margin-bottom: var(--space-1);
    font-size: 0.76rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.events-page__hero {
    border-color: #3d556d;
    background: linear-gradient(150deg, #1b2a3a 0%, #172637 55%, #162436 100%);
}

.events-card {
    border-color: #3e5a72;
    background: linear-gradient(160deg, #1b2c3f 0%, #17283a 100%);
}

.events-card__image-wrap {
    border-bottom-color: #3e5a72;
}

.events-card__actions .btn-secondary {
    border-color: #648f86;
    background: linear-gradient(160deg, #78a39a 0%, #648f86 100%);
    color: #0f2428;
}

.events-detail-hero {
    border-color: #3e5a72;
    background: linear-gradient(155deg, #1b2c3f 0%, #17283a 58%, #162638 100%);
}

.events-detail-hero__cover-wrap {
    border-bottom-color: #3e5a72;
}

.events-detail-meta div {
    border-color: #3f5670;
    background: #1b2d40;
}

.events-detail-server-list div,
.events-detail-more-item {
    border-color: #3f5670;
    background: #1b2d40;
}

.events-detail-meta dd,
.events-detail-server-list dd,
.events-detail-content p {
    color: #dbe7f4;
}

.events-detail-meta dt,
.events-detail-server-list dt {
    color: #a5b8cc;
}

@media (max-width: 640px) {
    .events-card__actions .btn-secondary {
        width: 100%;
    }

    .events-card__server-link {
        width: 100%;
    }

    .events-join-card__actions .btn {
        width: 100%;
    }
}

@media (max-width: 980px) {
    .events-detail-shell {
        grid-template-columns: 1fr;
    }

    .events-detail-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .events-detail-meta {
        grid-template-columns: 1fr;
    }
}

.homepage-game-card__actions .btn-secondary {
    flex: 1 1 100%;
}

.homepage-game-card__actions .btn-outline {
    flex: 1 1 calc(50% - 0.22rem);
}

.homepage-game-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--game-accent-rgb), 0.4);
    box-shadow: 0 12px 22px rgba(var(--game-accent-rgb), 0.2);
}

.homepage-game-card:hover .homepage-game-card__visual {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 20px rgba(var(--game-accent-rgb), 0.25);
}

.homepage-entry-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.homepage-entry-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-pill);
    border: 1px solid #d1dce8;
    background: #f2f7fc;
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 500;
}

.homepage-entry-links a:hover {
    border-color: #b6c6d7;
    background: #eaf2fa;
}

@media (max-width: 900px) {
    .hero {
        padding: var(--space-6) var(--space-4);
        max-width: 100%;
        box-sizing: border-box;
    }

    .homepage-hero {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .page-hierarchy {
        gap: var(--space-4);
    }

    .homepage-directory {
        gap: var(--space-4);
    }

    .homepage-section {
        gap: var(--space-2);
        padding: var(--space-3);
    }

    .game-search__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-search__bar {
        align-items: stretch;
    }

    .game-search__field {
        flex: 1 1 calc(50% - var(--space-2));
        min-width: 0;
    }

    .game-search__field--search {
        flex: 1 1 100%;
    }

    .game-search__actions {
        margin-left: 0;
        width: 100%;
    }

    .game-search__button {
        flex: 1 1 auto;
    }

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

    .homepage-hero .hero__title {
        max-width: 100%;
    }

    .homepage-hero--games {
        gap: var(--space-2);
        padding-top: var(--space-4);
        padding-bottom: var(--space-4);
    }
}

@media (max-width: 760px) {
    .homepage-directory,
    .homepage-directory .hero.homepage-hero,
    .card,
    .card-body {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .homepage-directory .hero.homepage-hero {
        padding: var(--space-4) var(--space-3);
    }

    .homepage-hero__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .homepage-hero__actions .btn,
    .homepage-empty-state__actions .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .game-directory__header {
        align-items: stretch;
        flex-direction: column;
    }

    .game-directory__search {
        width: 100%;
    }

    .game-directory__search input {
        min-height: 2.75rem;
    }

    .game-directory__quick-select {
        width: 100%;
    }

    .game-directory__quick-select-option {
        min-height: 3.65rem;
    }

    .game-directory,
    .game-directory .card-body,
    .game-directory .homepage-game-grid,
    .game-directory .homepage-game-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .game-directory .homepage-game-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .game-directory .homepage-game-card__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .game-directory .homepage-game-card__actions .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .game-search__field {
        flex: 1 1 100%;
    }

    .game-search__actions {
        flex-wrap: wrap;
    }

    .platform-stats-grid {
        grid-template-columns: 1fr;
    }

    .homepage-game-card__actions .btn {
        width: 100%;
        white-space: normal;
    }

    .homepage-game-card__visual {
        width: 4.25rem;
        height: 4.25rem;
    }
}

@media (max-width: 768px) {
    .game-directory,
    .game-directory .card-body,
    .game-directory .homepage-game-grid,
    .game-directory .homepage-game-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .game-directory .homepage-game-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .game-directory .homepage-game-card__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .game-directory .homepage-game-card__actions .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }
}

.server-overview__lede {
    margin-bottom: 0.45rem;
    color: var(--color-text-muted);
    font-size: 0.76rem;
    line-height: 1.35;
}

.server-overview__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
}

.server-overview__header-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 0.5rem;
    border: 1px solid #d7e3ee;
    background: #f5f9fd;
    object-fit: cover;
    flex: 0 0 auto;
}

.server-owner-teaser {
    margin: 0 0 0.7rem;
    border: 1px solid rgba(49, 92, 139, 0.22);
    border-radius: var(--radius-md);
    background: linear-gradient(165deg, rgba(49, 92, 139, 0.08) 0%, rgba(27, 161, 109, 0.07) 100%);
    padding: 0.68rem;
}

.server-owner-teaser__header {
    display: grid;
    gap: 0.1rem;
    margin-bottom: 0.52rem;
}

.server-owner-teaser__eyebrow {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.server-owner-teaser h3 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 0.94rem;
    line-height: 1.18;
}

.server-owner-teaser__actions {
    display: grid;
    gap: 0.34rem;
}

.server-owner-teaser__action {
    justify-content: flex-start;
    min-width: 0;
    border: 1px solid rgba(49, 92, 139, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.66);
    color: #25415c;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 0.42rem 0.48rem;
    text-decoration: none;
}

.server-owner-teaser__action:hover,
.server-owner-teaser__action:focus {
    border-color: rgba(49, 92, 139, 0.34);
    background: #fff;
    color: #152f48;
}

.server-overview__status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
}

.server-overview__status-row .status-badge {
    font-size: 0.7rem;
    padding: 0.16rem 0.6rem;
}

.server-overview__status-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.server-overview__status-chip {
    margin: 0;
    border: 1px solid #dbe6f1;
    border-radius: var(--radius-pill);
    background: #f5f9fd;
    color: #3a4b5b;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.16rem 0.46rem;
}

.server-overview__status-chip strong {
    margin-right: 0.24rem;
    color: #233445;
    font-weight: 700;
}

.server-activity-indicators {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    margin-bottom: 0.55rem;
}

.server-activity-indicator {
    display: grid;
    gap: 0.16rem;
    min-width: 0;
    margin: 0;
    border: 1px solid #dbe6f1;
    border-radius: var(--radius-sm);
    background: #f8fbfe;
    padding: 0.4rem 0.48rem;
}

.server-activity-indicator--online {
    border-color: rgba(27, 161, 109, 0.24);
    background: rgba(27, 161, 109, 0.08);
}

.server-activity-indicator--offline {
    border-color: rgba(176, 73, 73, 0.22);
    background: rgba(176, 73, 73, 0.07);
}

.server-activity-indicator__label {
    color: var(--color-text-muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.server-activity-indicator__value {
    min-width: 0;
    color: #233445;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.server-overview__stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    grid-auto-rows: minmax(4.15rem, auto);
    gap: 0.5rem;
    margin-bottom: 0.62rem;
}

.server-overview__stat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    min-height: 4.15rem;
    margin: 0;
    border: 1px solid #dbe6f1;
    border-radius: var(--radius-sm);
    background: linear-gradient(165deg, #f9fcff 0%, #f1f6fb 100%);
    padding: 0.54rem 0.58rem;
}

.server-overview__stat--primary {
    border-color: rgba(27, 161, 109, 0.22);
    background: linear-gradient(165deg, rgba(27, 161, 109, 0.12) 0%, rgba(27, 161, 109, 0.06) 100%);
}

.server-overview__stat--status-online {
    border-color: rgba(27, 161, 109, 0.24);
    background: linear-gradient(165deg, rgba(27, 161, 109, 0.12) 0%, rgba(27, 161, 109, 0.06) 100%);
}

.server-overview__stat--status-offline {
    border-color: rgba(176, 73, 73, 0.22);
    background: linear-gradient(165deg, rgba(176, 73, 73, 0.1) 0%, rgba(176, 73, 73, 0.05) 100%);
}

.server-overview__stat-label {
    margin: 0 0 0.34rem;
    color: var(--color-text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.15;
}

.server-overview__stat-value {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.server-overview__meta-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    margin: 0 0 0.55rem;
}

.server-overview__meta-list>div {
    margin: 0;
    border: 1px solid #dde7f1;
    border-radius: var(--radius-sm);
    background: #f7fbff;
    padding: 0.4rem 0.5rem;
}

.server-overview__meta-list .server-overview__meta-list-row {
    grid-column: 1 / -1;
}

.server-overview__meta-list dt {
    margin: 0 0 0.16rem;
    color: var(--color-text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.15;
}

.server-overview__meta-list dd {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
}

.server-overview__copy {
    margin: 0;
    display: grid;
    gap: 0.42rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.server-overview__copy .server-ip-copy-block {
    gap: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.server-overview__copy .server-ip-copy-box,
.server-overview__copy .server-ip-copy-box--inline {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.server-overview__copy .server-ip-copy-box {
    min-height: 2.3rem;
    border-radius: var(--radius-sm);
    border-color: #c8d5e2;
    background: #f7f9fc;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
    padding: 0.42rem 0.52rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    overflow: hidden;
}

.server-overview__copy .server-ip-copy-box:hover,
.server-overview__copy .server-ip-copy-box:focus-visible {
    border-color: #9fb3c7;
    background: #f2f6fb;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
}

.server-overview__copy .server-ip-copy-box__label {
    display: none;
}

.server-overview__copy .server-ip-copy-box__value {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.server-overview__copy .server-ip-copy-box__hint {
    flex: 0 0 auto;
    min-width: 0;
    margin-top: 0;
    white-space: nowrap;
}

.server-overview__vote-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 2.3rem;
    box-sizing: border-box;
    overflow: hidden;
}

.server-overview-community {
    margin-top: 0.72rem;
    padding-top: 0.72rem;
    border-top: 1px solid #dbe6f1;
    display: grid;
    gap: 0.48rem;
}

.server-overview-community h3 {
    margin: 0;
    color: #5a6f84;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.15;
    text-transform: uppercase;
}

.server-overview-community__list {
    display: grid;
    gap: 0.36rem;
}

.server-overview-community__link {
    --community-link-color: #315c8b;
    justify-content: flex-start;
    min-width: 0;
    min-height: 2rem;
    border: 1px solid rgba(49, 92, 139, 0.16);
    border-left: 3px solid var(--community-link-color);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.7);
    color: #27435e;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.15;
    padding: 0.34rem 0.48rem;
    text-decoration: none;
    box-shadow: none;
    overflow: hidden;
}

.server-overview-community__link:hover,
.server-overview-community__link:focus-visible {
    border-color: rgba(49, 92, 139, 0.28);
    border-left-color: var(--community-link-color);
    background: #ffffff;
    color: #182f45;
    box-shadow: 0 6px 14px rgba(31, 41, 51, 0.1);
}

.server-overview-community__link .ui-icon {
    flex: 0 0 auto;
    color: var(--community-link-color);
}

.server-overview-community__link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.server-overview-community__link--website,
.server-overview-community__link--other {
    --community-link-color: #315c8b;
}

.server-overview-community__link--discord {
    --community-link-color: #5865f2;
}

.server-overview-community__link--facebook {
    --community-link-color: #1877f2;
}

.server-overview-community__link--instagram {
    --community-link-color: #e4405f;
}

.server-overview-community__link--x,
.server-overview-community__link--twitter {
    --community-link-color: #111827;
}

.server-overview-community__link--twitch {
    --community-link-color: #9146ff;
}

.server-overview-community__link--tiktok {
    --community-link-color: #00f2ea;
}

.server-vote-form {
    margin-bottom: 0;
    display: grid;
    gap: var(--space-2);
}

.vote-page {
    display: grid;
    gap: var(--space-3);
}

.vote-page__intro {
    margin-bottom: 0;
}

.vote-message-stack {
    display: grid;
    gap: var(--space-2);
}

.vote-page__hero {
    display: grid;
    gap: var(--space-2);
}

.vote-page__description {
    margin-bottom: 0;
    color: var(--color-text-muted);
    max-width: 74ch;
}

.vote-summary {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: 0;
}

.vote-summary__chip {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #d4deea;
    border-radius: var(--radius-pill);
    padding: 0.3rem 0.7rem;
    background: linear-gradient(165deg, #f8fbff 0%, #eef4fa 100%);
    color: #2f3d4d;
    font-size: 0.88rem;
}

.vote-status-panel>p {
    margin-bottom: 0.32rem;
}

.vote-status-panel>p:last-child {
    margin-bottom: 0;
}

.vote-status-panel [data-cooldown-countdown] {
    margin-top: 0.1rem;
    color: var(--color-text-muted);
    font-size: 0.84rem;
}

.vote-action-card {
    display: grid;
    gap: 0;
    padding: 0;
    border: 1px solid #bfd3e8;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 249, 255, 0.98) 48%, rgba(239, 246, 252, 0.98) 100%);
    box-shadow: 0 18px 38px rgba(39, 64, 89, 0.14);
    overflow: hidden;
}

.vote-action-card__banner {
    display: grid;
    justify-items: end;
    width: 100%;
    min-width: 0;
}

.vote-action-card__banner .server-info-banner-card--inline {
    max-width: 100%;
    width: min(100%, 351px);
    padding: 0.32rem;
}

.vote-action-card__banner .server-info-banner-card__image {
    width: 100%;
    height: 45px;
    aspect-ratio: 468 / 60;
    object-fit: fill;
}

.vote-action-card__server-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    min-width: 0;
    padding: 0.72rem 0.82rem 0.65rem;
    border-bottom: 1px solid rgba(191, 211, 232, 0.72);
    box-sizing: border-box;
}

.vote-action-card__server-summary--with-banner {
    grid-template-columns: minmax(16rem, 1fr) minmax(12rem, 22.5rem);
}

.vote-action-card__server-icon {
    width: clamp(3.2rem, 7vw, 4.25rem);
    height: clamp(3.2rem, 7vw, 4.25rem);
    border: 1px solid #d4deea;
    border-radius: var(--radius-sm);
    background: var(--color-bg-soft);
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(39, 64, 89, 0.12);
}

.vote-action-card__server-copy {
    display: grid;
    gap: 0.38rem;
    min-width: 0;
}

.vote-action-card__server-name {
    margin: 0;
    color: var(--color-text-primary);
    font-size: clamp(1.12rem, 2.2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.vote-action-card__server-name-context {
    color: var(--color-text-muted);
    font-size: 0.78em;
    font-weight: 600;
}

.vote-action-card__server-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.vote-action-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.65rem;
    border: 1px solid #d2deea;
    border-radius: var(--radius-pill);
    padding: 0.22rem 0.58rem;
    background: #f3f7fc;
    color: #2f3d4d;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.1;
}

.vote-action-card__badge.server-subheader-metric--status-online {
    border-color: rgba(119, 229, 159, 0.66);
    background: rgba(23, 88, 50, 0.76);
    color: #dbffe8;
}

.vote-action-card__badge.server-subheader-metric--status-offline {
    border-color: rgba(255, 156, 142, 0.66);
    background: rgba(111, 38, 32, 0.76);
    color: #ffe1dc;
}

.vote-action-card__copy-ip {
    max-width: min(18rem, 32vw);
}

.vote-action-card__copy-ip .server-ip-copy-box {
    box-shadow: 0 8px 18px rgba(39, 64, 89, 0.12);
}

.vote-action-card__header {
    display: grid;
    gap: 0.45rem;
    padding: clamp(var(--space-3), 2.4vw, var(--space-4)) clamp(var(--space-3), 3vw, var(--space-5)) var(--space-2);
}

.vote-action-card__header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    min-width: 0;
}

.vote-action-card__notice {
    margin: 0 clamp(var(--space-3), 3vw, var(--space-5)) var(--space-2);
}

.vote-action-card > .server-vote-form {
    padding: 0 clamp(var(--space-3), 3vw, var(--space-5)) clamp(var(--space-3), 3vw, var(--space-5));
}

.vote-action-card__eyebrow,
.vote-action-card__header h2,
.vote-action-card__status p,
.vote-action-card__notice p {
    margin-bottom: 0;
}

.vote-action-card__eyebrow {
    color: #315c8b;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.vote-action-card__header h2 {
    color: var(--color-text-primary);
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.12;
}

.vote-action-card__status {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.22rem 0.75rem;
    min-width: 0;
    color: #334b64;
    font-size: 0.8rem;
    line-height: 1.25;
    text-align: right;
}

.vote-action-card__status [data-cooldown-countdown] {
    flex-basis: auto;
}

.vote-action-card__flow {
    display: grid;
    gap: 0.85rem;
}

.server-vote-form__prep-row {
    display: grid;
    grid-template-columns: minmax(14rem, 0.95fr) minmax(304px, 1.05fr);
    align-items: start;
    gap: var(--space-3);
}

.vote-readiness {
    display: grid;
    gap: 0.34rem;
    max-width: 100%;
    padding: 0.56rem 0.68rem;
    border: 1px solid rgba(188, 208, 228, 0.64);
    border-radius: var(--radius-md);
    background: rgba(248, 251, 255, 0.58);
}

.vote-readiness__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    min-width: 0;
    font-size: 0.78rem;
    line-height: 1.2;
}

.vote-readiness__label {
    flex: 0 0 auto;
    color: var(--color-text-primary);
    font-weight: 800;
}

.vote-readiness__time {
    min-width: 0;
    overflow: hidden;
    color: var(--color-text-muted);
    font-weight: 700;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vote-readiness__track {
    position: relative;
    height: 0.34rem;
    overflow: hidden;
    border-radius: var(--radius-pill);
    background: rgba(142, 164, 188, 0.28);
}

.vote-readiness__fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2ebd67 0%, #78d6a7 100%);
}

.vote-readiness--ready .vote-readiness__fill {
    animation: vote-readiness-ready-pulse 2.1s ease-in-out infinite;
}

.vote-readiness--waiting .vote-readiness__fill {
    width: 42%;
    background: linear-gradient(90deg, #f1a33c 0%, #74a7d8 100%);
    animation: vote-readiness-waiting 1.8s ease-in-out infinite;
}

@keyframes vote-readiness-ready-pulse {
    0%,
    100% {
        opacity: 0.76;
    }

    50% {
        opacity: 1;
    }
}

@keyframes vote-readiness-waiting {
    0% {
        transform: translateX(-70%);
    }

    100% {
        transform: translateX(240%);
    }
}

.vote-action-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    align-items: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.vote-action-step--vote {
    border-color: transparent;
    background: transparent;
}

.vote-action-step--reward {
    border-color: transparent;
    background: transparent;
}

.vote-action-step__marker {
    display: none;
    width: 0;
    height: 0;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #284c73;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.vote-action-step--vote .vote-action-step__marker {
    background: #d95735;
}

.vote-action-step--reward .vote-action-step__marker {
    background: #39784d;
}

.vote-action-step__body {
    display: grid;
    gap: 0.5rem;
    min-width: 0;
}

.vote-action-step__body h3,
.vote-action-step__title,
.vote-action-step__summary {
    margin-bottom: 0;
}

.vote-action-step__body h3,
.vote-action-step__title {
    font-size: 1rem;
    line-height: 1.2;
}

.vote-action-step__summary {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.vote-reward-callout {
    display: grid;
    gap: 0.3rem;
    padding: var(--space-1) var(--space-2);
    border-color: #aac7e4;
    box-shadow: none;
}

.vote-reward-callout__title,
.vote-reward-callout__line,
.vote-reward-callout__hint,
.vote-reward-callout__actions {
    margin-bottom: 0;
}

.vote-reward-callout__title {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #2f4f75;
}

.vote-reward-callout__line {
    font-size: 0.88rem;
    line-height: 1.3;
    color: #244465;
}

.vote-reward-callout__hint {
    font-size: 0.8rem;
    line-height: 1.35;
    color: var(--color-text-muted);
}

.vote-reward-callout__actions {
    margin-top: 0.1rem;
}

.vote-reward-callout__actions .btn {
    min-height: 2rem;
    padding: 0.28rem 0.62rem;
    font-size: 0.76rem;
}

.vote-reward-callout--supporting {
    margin-top: 0;
}

.vote-rewards-card {
    display: grid;
    gap: var(--space-2);
}

.vote-rewards-card__title {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.2;
}

.vote-rewards-card__tiers {
    display: grid;
    gap: 0.45rem;
}

.vote-credit-spotlight {
    display: grid;
    gap: 0.22rem;
    padding: var(--space-2);
    border: 1px solid rgba(244, 107, 69, 0.32);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #fff8f3 0%, #fff0e8 100%);
}

.vote-credit-spotlight__label,
.vote-credit-spotlight__value,
.vote-credit-spotlight__balance,
.vote-rewards-card__usage-intro {
    margin-bottom: 0;
}

.vote-credit-spotlight__label {
    color: #8d3d22;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.vote-credit-spotlight__value {
    color: #b94727;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.05;
}

.vote-credit-spotlight__balance {
    color: #5d463c;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
}

.vote-rewards-card__usage-intro {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.vote-credit-use-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
}

.vote-credit-use-list li {
    margin: 0;
    border: 1px solid rgba(142, 164, 188, 0.36);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.72);
    padding: 0.34rem 0.58rem;
    color: var(--color-text-primary);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.15;
}

.vote-rewards-tier {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.22rem var(--space-2);
    align-items: center;
    padding: 0.58rem 0.68rem;
    border: 1px solid rgba(142, 164, 188, 0.38);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.68);
}

.vote-rewards-tier--base {
    border-color: rgba(49, 92, 139, 0.28);
    background: #f4f8fc;
}

.vote-rewards-tier--plus {
    border-color: rgba(200, 150, 26, 0.42);
    background: linear-gradient(145deg, #fff8df 0%, #fff0bf 100%);
}

.vote-rewards-tier.is-current {
    box-shadow: 0 0 0 2px rgba(244, 107, 69, 0.16);
}

.vote-rewards-tier__label,
.vote-rewards-tier__value,
.vote-rewards-tier__perk,
.vote-rewards-card__actions {
    margin-bottom: 0;
}

.vote-rewards-tier__label {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.vote-rewards-tier__value {
    color: var(--color-text-primary);
    font-size: 0.95rem;
    line-height: 1.15;
    white-space: nowrap;
}

.vote-rewards-tier--plus .vote-rewards-tier__value {
    color: #6b4700;
    font-size: 1.05rem;
}

.vote-rewards-tier__perk {
    color: #5e4a16;
    font-size: 0.8rem;
    line-height: 1.25;
}

.vote-rewards-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
}

.vote-rewards-card__actions:empty {
    display: none;
}

.vote-rewards-card__actions .btn {
    min-height: 2.2rem;
    padding: 0.42rem 0.7rem;
    font-size: 0.82rem;
}

.vote-success-card {
    display: grid;
    gap: var(--space-3);
    padding: clamp(var(--space-3), 3vw, var(--space-5));
    border: 1px solid rgba(78, 143, 96, 0.42);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(248, 255, 250, 0.98) 0%, rgba(239, 249, 244, 0.98) 54%, rgba(233, 246, 239, 0.98) 100%);
    box-shadow: 0 18px 38px rgba(44, 94, 61, 0.16);
}

.vote-success-card__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-2);
    align-items: center;
}

.vote-success-card__icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #2f8a4d;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(47, 138, 77, 0.28);
}

.vote-success-card__eyebrow,
.vote-success-card__header h2,
.vote-success-card__metrics,
.vote-success-metric,
.vote-success-metric dt,
.vote-success-metric dd,
.vote-success-card__actions {
    margin-bottom: 0;
}

.vote-success-card__eyebrow {
    color: #2d7444;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.vote-success-card__header h2 {
    color: var(--color-text-primary);
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    line-height: 1.08;
}

.vote-success-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-2);
}

.vote-success-metric {
    display: grid;
    gap: 0.3rem;
    min-width: 0;
    padding: var(--space-2);
    border: 1px solid rgba(108, 146, 118, 0.28);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
}

.vote-success-metric dt {
    color: #42614a;
    font-size: 0.82rem;
    font-weight: 700;
}

.vote-success-metric dd {
    color: var(--color-text-primary);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.vote-success-metric--earned {
    border-color: rgba(244, 107, 69, 0.34);
    background: #fff8f4;
}

.vote-success-metric--earned dd {
    color: #b94727;
    font-size: 1.24rem;
}

.vote-success-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.vote-success-card__actions .btn {
    min-height: 2.65rem;
}

.vote-account-benefits-card {
    display: grid;
    gap: var(--space-3);
    padding: clamp(var(--space-3), 3vw, var(--space-4));
    border: 1px solid #d8c48f;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #fff9ea 0%, #fff0cb 100%);
    box-shadow: 0 14px 30px rgba(145, 108, 35, 0.13);
}

.vote-account-benefits-card__header,
.vote-account-benefits-card__eyebrow,
.vote-account-benefits-card__header h2,
.vote-account-benefits-card__actions {
    margin-bottom: 0;
}

.vote-account-benefits-card__header {
    display: grid;
    gap: 0.35rem;
}

.vote-account-benefits-card__eyebrow {
    color: #8a5a0c;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.1;
    text-transform: uppercase;
}

.vote-account-benefits-card__header h2 {
    color: #392d16;
    font-size: clamp(1.25rem, 2.1vw, 1.65rem);
    line-height: 1.12;
}

.vote-account-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem var(--space-2);
}

.vote-account-benefits-list li {
    margin: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.45rem;
    align-items: start;
    color: #49391c;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
}

.vote-account-benefits-list span {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #2f8a4d;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.vote-account-benefits-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.vote-account-benefits-card__actions .btn {
    min-height: 2.75rem;
}

.vote-account-benefits-card__primary-cta {
    animation: vote-account-primary-pulse 2.4s ease-in-out infinite;
}

.vote-account-benefits-card__oauth {
    display: grid;
    gap: var(--space-2);
    padding-top: var(--space-2);
    border-top: 1px solid rgba(138, 90, 12, 0.18);
}

.vote-account-benefits-card__oauth .auth-oauth-panel {
    gap: var(--space-2);
}

.vote-account-benefits-card__oauth .auth-oauth-panel__header h2,
.vote-account-benefits-card__oauth .auth-oauth-panel__title {
    color: #5b4218;
    font-size: 0.88rem;
}

.vote-account-benefits-card__oauth .auth-oauth-panel__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.vote-account-benefits-card__oauth .auth-oauth-button {
    min-height: 2.8rem;
    padding: 0.55rem 0.7rem;
    box-shadow: 0 5px 12px rgba(75, 54, 17, 0.1);
}

@keyframes vote-account-primary-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 107, 69, 0.34), 0 6px 14px rgba(244, 107, 69, 0.18);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 0 0 0.32rem rgba(244, 107, 69, 0), 0 10px 20px rgba(244, 107, 69, 0.24);
        transform: translateY(-1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vote-account-benefits-card__primary-cta {
        animation: none;
    }

    .vote-readiness__fill {
        animation: none;
    }
}

.vote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: var(--space-3);
    align-items: start;
}

.vote-layout__main,
.vote-layout__aside {
    display: grid;
    gap: var(--space-1);
}

.vote-page__actions {
    margin-bottom: 0;
}

.vote-context-card {
    border: 1px solid #d4deea;
    border-radius: var(--radius-md);
    padding: var(--space-2);
    background: linear-gradient(160deg, #f9fbfe 0%, #edf3f9 100%);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.vote-context-card>* {
    position: relative;
    z-index: 1;
}

.vote-context-card--has-bg {
    border-color: rgba(var(--game-accent-rgb), 0.46);
    background: var(--vote-context-bg-image);
    background-position: center;
    background-size: cover;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(18, 31, 45, 0.22);
}

.vote-context-card--has-bg::before {
    content: none;
}

.vote-context-card h2 {
    margin-bottom: var(--space-2);
    font-size: 0.95rem;
}

.vote-context-card--has-bg h2,
.vote-context-card--has-bg .vote-context-list dt,
.vote-context-card--has-bg .vote-context-list dd {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.48);
}

.vote-context-card--has-bg .server-taxonomy-chip {
    border-color: rgba(93, 120, 148, 0.88);
    background: rgba(27, 45, 64, 0.94);
    color: #eef6ff;
    text-shadow: none;
}

.vote-context-card--has-bg .server-taxonomy-chip:hover {
    border-color: rgba(115, 145, 176, 0.95);
    background: rgba(34, 54, 74, 0.96);
    color: #ffffff;
}

.vote-section-title {
    margin-bottom: var(--space-2);
    font-size: 0.95rem;
}

.vote-section-title--spaced {
    margin-bottom: var(--space-1);
}

.vote-stat-grid-section {
    display: grid;
    gap: var(--space-2);
}

.vote-context-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-1);
    margin: 0;
}

.vote-context-list div {
    margin-bottom: 0;
}

.vote-context-list dt {
    margin-bottom: 0.18rem;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vote-context-list dd {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 0.9rem;
}

.vote-context-card__copy {
    width: 100%;
    min-height: 2.3rem;
    padding: 0.42rem 0.52rem;
}

.vote-context-card__links {
    margin-top: var(--space-2);
    margin-bottom: 0;
    display: grid;
    gap: var(--space-1);
}

.vote-context-card__links .btn {
    width: 100%;
}

.vote-sidebar-leaderboard {
    border: 1px solid #d4deea;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #f9fbfe 0%, #edf3f9 100%);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.vote-sidebar-leaderboard__header {
    padding: 0.78rem 0.9rem;
    border-bottom: 1px solid #dbe5ef;
}

.vote-sidebar-leaderboard__header h2 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 0.98rem;
    line-height: 1.2;
}

.vote-sidebar-leaderboard__list {
    margin: 0;
    padding: 0.45rem;
    list-style: none;
}

.vote-sidebar-leaderboard__row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    padding: 0.58rem 0.6rem;
    border: 1px solid rgba(212, 222, 234, 0.78);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.74);
}

.vote-sidebar-leaderboard__row + .vote-sidebar-leaderboard__row {
    margin-top: 0.35rem;
}

.vote-sidebar-leaderboard__rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border: 1px solid rgba(142, 164, 188, 0.46);
    border-radius: var(--radius-pill);
    background: rgba(232, 239, 247, 0.92);
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.vote-sidebar-leaderboard__row.vote-leaderboard-row--gold .vote-sidebar-leaderboard__rank {
    border-color: #d4a21e;
    background: linear-gradient(145deg, #ffe98d 0%, #f1ba32 100%);
    color: #4d3300;
}

.vote-sidebar-leaderboard__name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--color-text-primary);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
}

.vote-sidebar-leaderboard__count {
    flex: 0 0 auto;
    justify-self: end;
    color: var(--color-text-primary);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
}

.vote-sidebar-leaderboard__empty {
    margin: 0;
    padding: 0.78rem 0.9rem;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.vote-stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
}

.vote-stat-grid .server-stat-card {
    grid-template-rows: auto auto;
    min-height: 4.55rem;
    padding: 0.62rem 0.72rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 14px rgba(34, 52, 70, 0.08);
}

.vote-stat-grid .server-stat-card__label {
    min-height: 0;
    margin-bottom: 0.26rem;
    font-size: 0.72rem;
    line-height: 1.2;
}

.vote-stat-grid .server-stat-card__value {
    align-self: end;
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    line-height: 1.16;
    overflow-wrap: normal;
    word-break: normal;
}

.vote-stat-grid .server-stat-card__meta {
    margin-top: 0.22rem;
    font-size: 0.76rem;
    line-height: 1.25;
}

.vote-stats-collection-card {
    border: 1px dashed #d5dfeb;
    border-radius: var(--radius-sm);
    padding: 0.72rem;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8fd 100%);
    color: var(--color-text-primary);
    font-size: 0.84rem;
    line-height: 1.36;
}

.vote-stats-collection-card p {
    margin-bottom: 0.45rem;
}

.vote-stats-collection-card p:last-child {
    margin-bottom: 0;
}

.vote-stats-collection-card ul {
    margin: 0 0 0.45rem;
    padding-left: 1.2rem;
    color: var(--color-text-muted);
}

.vote-stats-collection-card li {
    margin-bottom: 0.2rem;
}

.vote-faq-section {
    border: 1px solid #d7e2ec;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.vote-bumped-strip .card-header {
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
    font-size: 0.86rem;
}

.vote-bumped-strip__body {
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
}

.vote-bumped-strip__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.35rem;
}

.vote-bumped-strip__item {
    margin: 0;
}

.vote-bumped-strip__link {
    display: grid;
    grid-template-columns: auto 1.35rem minmax(0, 1fr);
    align-items: center;
    gap: 0.42rem;
    padding: 0.28rem 0.4rem;
    border: 1px solid #d8e3ef;
    border-radius: var(--radius-sm);
    background: #f8fbff;
    color: var(--color-text-primary);
    text-decoration: none;
}

.vote-bumped-strip__link:hover {
    border-color: #c7d7e8;
    background: #f2f8ff;
}

.vote-bumped-strip__rank {
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
}

.vote-bumped-strip__icon {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #d7e2ee;
    background: #fff;
}

.vote-bumped-strip__name {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.15;
}

.vote-leaderboard-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.vote-leaderboard-card__header h2,
.vote-leaderboard-card__eyebrow,
.vote-leaderboard-card__total,
.vote-leaderboard-card__month,
.vote-leaderboard-pagination {
    margin-bottom: 0;
}

.vote-leaderboard-card__header h2 {
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.2;
}

.vote-leaderboard-card__eyebrow {
    color: #315c8b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.vote-leaderboard-card__total {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border: 1px solid #d7e2ee;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.82);
    padding: 0.34rem 0.72rem;
    color: var(--color-text-muted);
    font-size: 0.84rem;
    line-height: 1.15;
}

.vote-leaderboard-card__total strong {
    color: var(--color-text-primary);
}

.vote-leaderboard-card__body {
    display: grid;
    gap: var(--space-2);
}

.vote-leaderboard-card__month {
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.vote-leaderboard-table {
    margin-bottom: 0;
}

.vote-leaderboard-table th:nth-child(1),
.vote-leaderboard-table td:nth-child(1) {
    width: 7.5rem;
}

.vote-leaderboard-table th:nth-child(3),
.vote-leaderboard-table td:nth-child(3) {
    width: 6rem;
    text-align: right;
}

.vote-leaderboard-row {
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.vote-leaderboard-row--gold {
    background: linear-gradient(90deg, rgba(255, 231, 150, 0.42) 0%, rgba(255, 248, 222, 0.2) 100%);
}

.vote-leaderboard-row--silver {
    background: linear-gradient(90deg, rgba(210, 220, 232, 0.5) 0%, rgba(247, 250, 253, 0.18) 100%);
}

.vote-leaderboard-row--bronze {
    background: linear-gradient(90deg, rgba(218, 161, 105, 0.28) 0%, rgba(255, 246, 236, 0.18) 100%);
}

.vote-leaderboard-row--current {
    box-shadow: inset 4px 0 0 #f46b45;
    background: linear-gradient(90deg, rgba(244, 107, 69, 0.14) 0%, rgba(244, 107, 69, 0.05) 100%);
}

.vote-leaderboard-rank,
.vote-leaderboard-player {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.vote-leaderboard-rank__medal {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #cfdae6;
    background: #f6f9fc;
    color: #4b5c6d;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.vote-leaderboard-row--gold .vote-leaderboard-rank__medal {
    border-color: #d4a21e;
    background: linear-gradient(145deg, #ffe98d 0%, #f1ba32 100%);
    color: #4d3300;
}

.vote-leaderboard-row--silver .vote-leaderboard-rank__medal {
    border-color: #a6b3c0;
    background: linear-gradient(145deg, #f4f7fa 0%, #c5d0dc 100%);
    color: #334252;
}

.vote-leaderboard-row--bronze .vote-leaderboard-rank__medal {
    border-color: #b9783e;
    background: linear-gradient(145deg, #efbf8b 0%, #c47b3e 100%);
    color: #46240d;
}

.vote-leaderboard-player {
    max-width: 100%;
    font-weight: 700;
}

.vote-leaderboard-player__badge {
    flex: 0 0 auto;
    border-radius: var(--radius-pill);
    background: #ffe8dd;
    color: #a43d24;
    padding: 0.14rem 0.46rem;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.1;
}

.vote-leaderboard-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-2);
}

.vote-leaderboard-pagination [data-leaderboard-page-status] {
    color: var(--color-text-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.vote-leaderboard-pagination .btn {
    min-height: 2.2rem;
    padding: 0.42rem 0.78rem;
    font-size: 0.84rem;
}

.server-vote-button {
    width: 100%;
    min-height: 5.25rem;
    font-size: 1.08rem;
    font-weight: 600;
}

.server-vote-form__identity-field {
    display: grid;
    gap: 0.22rem;
}

.server-vote-form__identity-field small {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.server-vote-form .captcha-placeholder {
    margin-top: 0;
    margin-bottom: 0;
}

.vote-captcha-benefits {
    display: grid;
    gap: 0.65rem;
    min-width: 0;
    padding: 0.72rem;
    border: 1px solid rgba(188, 208, 228, 0.58);
    border-radius: var(--radius-md);
    background: rgba(248, 251, 255, 0.72);
}

.vote-captcha-benefits__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.5rem;
}

.vote-captcha-benefits__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border: 1px solid rgba(244, 107, 69, 0.34);
    border-radius: var(--radius-pill);
    background: rgba(255, 239, 220, 0.86);
    color: #b94727;
}

.vote-captcha-benefits h4,
.vote-captcha-benefits__title,
.vote-captcha-benefits p {
    margin: 0;
}

.vote-captcha-benefits h4,
.vote-captcha-benefits__title {
    color: var(--color-text-primary);
    font-size: 0.92rem;
    line-height: 1.2;
}

.vote-captcha-benefits p {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    line-height: 1.32;
}

.vote-captcha-benefits__oauth .auth-oauth-panel {
    gap: 0;
}

.vote-captcha-benefits__oauth .auth-oauth-panel__header {
    display: none;
}

.vote-captcha-benefits__oauth .auth-oauth-panel__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
}

.vote-captcha-benefits__oauth .auth-oauth-button {
    min-height: 2.15rem;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    padding: 0.38rem 0.48rem;
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    box-shadow: none;
}

.vote-captcha-benefits__oauth .auth-oauth-button__icon {
    width: 1.12rem;
    height: 1.12rem;
}

.vote-captcha-benefits__oauth .auth-oauth-button__icon svg {
    width: 1rem;
    height: 1rem;
}

.vote-captcha-benefits__oauth .auth-oauth-button__text {
    padding-right: 0;
    text-align: center;
}

.vote-captcha-benefits__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
}

.vote-captcha-benefits__actions .btn {
    min-height: 2rem;
    padding: 0.34rem 0.48rem;
    font-size: 0.74rem;
}

.hold-submit {
    position: relative;
    overflow: hidden;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    --hold-progress: 0%;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    box-shadow: 0 12px 24px rgba(244, 107, 69, 0.24);
    transition: transform var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease), filter var(--motion-base) var(--motion-ease);
}

.hold-submit__progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--hold-progress, 0%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.4) 100%);
    pointer-events: none;
    transition: width 0.06s linear;
}

.hold-submit__content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-3);
    align-items: center;
}

.hold-submit__marker {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28);
}

.hold-submit__text {
    display: grid;
    gap: 0.16rem;
}

.hold-submit__label {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    line-height: 1.1;
}

.hold-submit__meta {
    font-size: 0.82rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

.hold-submit__percent {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 3.2ch;
    text-align: right;
}

.hold-submit.is-holding {
    filter: brightness(1.03) saturate(1.04);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(244, 107, 69, 0.34);
}

.hold-submit.is-holding .hold-submit__marker {
    animation: hold-pulse 0.85s ease-in-out infinite;
}

.hold-submit.is-complete {
    filter: saturate(1.08);
    box-shadow: 0 14px 28px rgba(27, 161, 109, 0.34);
}

.hold-submit.is-complete .hold-submit__progress {
    background: linear-gradient(90deg, rgba(27, 161, 109, 0.28) 0%, rgba(27, 161, 109, 0.45) 100%);
}

.hold-submit.is-complete .hold-submit__marker {
    border-color: rgba(222, 255, 238, 0.96);
    background: rgba(211, 252, 227, 0.65);
}

.hold-submit.is-loading {
    cursor: progress;
    filter: saturate(1.02);
}

.hold-submit[disabled],
.hold-submit[aria-disabled='true'] {
    cursor: not-allowed;
    opacity: 0.8;
    filter: grayscale(0.2) saturate(0.7);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.hold-submit-help {
    margin-top: var(--space-1);
    color: var(--color-text-muted);
    font-size: 0.86rem;
    margin-bottom: 0;
}

.vote-guest-reward-helper {
    margin-top: var(--space-1);
    padding: var(--space-1) 0 0;
    display: grid;
    gap: 0.32rem;
    border-top: 1px solid rgba(126, 159, 194, 0.28);
}

.vote-guest-reward-helper__lead,
.vote-guest-reward-helper__text,
.vote-guest-reward-helper__actions {
    margin-bottom: 0;
}

.vote-guest-reward-helper__text {
    font-size: 0.84rem;
    line-height: 1.35;
    color: var(--color-text-muted);
}

.vote-guest-reward-helper__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
}

.server-vote-form .loading-indicator {
    margin-top: var(--space-2);
}

.state-message--success {
    background: linear-gradient(165deg, #e9f8f0 0%, #dff3e8 100%);
    border-color: #7ec4a0;
}

.state-message--error {
    background: linear-gradient(165deg, #fff2ef 0%, #ffe8e2 100%);
    border-color: #eeb7ab;
}

.state-message--info {
    background: linear-gradient(165deg, #f5f8fc 0%, #edf3f9 100%);
    border-color: #d3dee9;
}

.state-message--warning {
    background: linear-gradient(165deg, #fff8ed 0%, #fff1df 100%);
    border-color: #efcc98;
}

.state-message--reward {
    background: linear-gradient(165deg, #eef8ff 0%, #e3f1ff 100%);
    border-color: #a9c7e8;
}

.promotion-status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    padding: 0.12rem 0.56rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
}

.promotion-status-badge--active {
    border-color: rgba(27, 161, 109, 0.3);
    color: #0d6b47;
    background: linear-gradient(165deg, rgba(27, 161, 109, 0.2) 0%, rgba(27, 161, 109, 0.12) 100%);
}

.promotion-status-badge--promoted {
    border-color: #d9ab3a;
    color: #6d4d07;
    background: linear-gradient(150deg, #ffe8a6 0%, #f2c560 100%);
}

.inline-link-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: 0;
}

.inline-link-row a {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d1dce8;
    border-radius: var(--radius-pill);
    background: #f3f7fc;
    color: #2f3d4d;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.1;
    padding: 0.34rem 0.7rem;
    transition: border-color var(--motion-base) var(--motion-ease), background-color var(--motion-base) var(--motion-ease), color var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease);
}

.inline-link-row a:hover {
    border-color: #bfcedf;
    background: #ebf2f9;
}

.inline-link-row a:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
}

.inline-link-row .server-list-intro__updates-link {
    border-color: #d88f30;
    background: linear-gradient(160deg, #f3b45f 0%, #eea849 100%);
    color: #172331;
    font-weight: 700;
    box-shadow: 0 8px 14px rgba(238, 168, 73, 0.18);
}

.inline-link-row .server-list-intro__updates-link:hover {
    border-color: #d18427;
    background: linear-gradient(160deg, #f6bf70 0%, #f0af58 100%);
    color: #172331;
}

.taxonomy-seo-block {
    margin-top: var(--space-2);
}

.taxonomy-seo-block__body {
    display: grid;
    gap: var(--space-2);
}

.taxonomy-seo-block__title {
    margin-bottom: 0;
    font-size: clamp(1.14rem, 1.8vw, 1.38rem);
    line-height: 1.25;
}

.taxonomy-seo-block__body h3 {
    margin-bottom: 0;
    margin-top: var(--space-1);
    font-size: 1.02rem;
    line-height: 1.3;
    color: var(--color-primary-dark);
}

.taxonomy-seo-block__body p,
.taxonomy-seo-block__body li {
    line-height: 1.5;
}

.taxonomy-seo-block__body ul,
.taxonomy-seo-block__body ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.taxonomy-seo-block__context-links {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.taxonomy-seo-block__context-links a {
    font-weight: 600;
}

.taxonomy-compact-nav {
    margin-top: var(--space-2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
    gap: var(--space-2);
}

.taxonomy-compact-nav__field {
    margin-bottom: 0;
}

.taxonomy-compact-nav__field label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.1;
}

.taxonomy-compact-nav__field select {
    width: 100%;
    min-height: 2.18rem;
    border-radius: var(--radius-sm);
    border: 1px solid #c9d4de;
    background: #ffffff;
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
}

.taxonomy-compact-nav__field select:hover {
    border-color: #acbccb;
}

.taxonomy-compact-nav__field select:focus {
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 3px rgba(238, 168, 73, 0.16);
}

.error-404-page {
    border-color: #d6e1ec;
    background: linear-gradient(155deg, #ffffff 0%, #f5f9fd 100%);
}

.error-404-page__body {
    text-align: center;
    display: grid;
    justify-items: center;
    gap: var(--space-2);
    padding: clamp(var(--space-5), 6vw, var(--space-7));
}

.error-404-page__code {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #f46b45;
}

.error-404-page__title {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 3.5vw, 2rem);
}

.error-404-page__copy {
    margin-bottom: 0;
    max-width: 52ch;
    color: var(--color-text-muted);
}

.error-404-page__path {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.error-404-page__path code {
    display: inline-block;
    margin-left: 0.25rem;
    border: 1px solid #d3deea;
    border-radius: var(--radius-sm);
    background: #f3f7fc;
    padding: 0.22rem 0.44rem;
    color: var(--color-primary-dark);
    font-size: 0.84rem;
}

.error-404-page__actions {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-2);
}

.legacy-server-404-page {
    display: grid;
    gap: var(--space-3);
    max-width: 62rem;
    margin: 0 auto;
}

.legacy-server-404-page__hero {
    border-color: #d8e3ee;
    background: linear-gradient(145deg, #ffffff 0%, #f6faff 58%, #fff4e6 100%);
}

.legacy-server-404-page__hero:hover,
.legacy-server-404-page__old-link:hover,
.legacy-server-404-page__retention:hover {
    transform: none;
}

.legacy-server-404-page__hero-body {
    display: grid;
    gap: var(--space-2);
    padding: clamp(var(--space-4), 5vw, var(--space-6));
}

.legacy-server-404-page__hero-body>* {
    margin-bottom: 0;
}

.legacy-server-404-page__eyebrow {
    color: #315c8b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legacy-server-404-page__hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.08;
    white-space: nowrap;
}

.legacy-server-404-page__lead {
    max-width: 66ch;
    color: var(--color-text-primary);
    font-size: clamp(1rem, 1.8vw, 1.14rem);
    line-height: 1.58;
}

.legacy-server-404-page__copy {
    max-width: 58ch;
    color: var(--color-text-muted);
}

.legacy-server-404-page__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem var(--space-3);
    max-width: 48rem;
    margin: var(--space-1) 0 0;
    padding: 0;
    list-style: none;
}

.legacy-server-404-page__features li {
    display: grid;
    grid-template-columns: 1.45rem minmax(0, 1fr);
    align-items: start;
    gap: 0.42rem;
    min-width: 0;
    color: #273c50;
    font-weight: 600;
    line-height: 1.38;
}

.legacy-server-404-page__features span {
    display: inline-grid;
    place-items: center;
    width: 1.18rem;
    height: 1.18rem;
    margin-top: 0.06rem;
    border-radius: var(--radius-pill);
    background: rgba(238, 168, 73, 0.16);
    color: #bf7624;
    font-size: 0.82rem;
    font-weight: 800;
}

.legacy-server-404-page__lookup {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border: 1px solid #d7e2ee;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    padding: 0.65rem 0.78rem;
    color: #334a5f;
    line-height: 1.42;
}

.legacy-server-404-page__signup {
    display: grid;
    gap: var(--space-2);
    width: 100%;
    max-width: 48rem;
    margin-top: var(--space-2);
}

.legacy-server-404-page__signup>.btn {
    justify-self: start;
}

.legacy-server-404-page__signup .auth-oauth-panel {
    width: 100%;
    max-width: 100%;
}

.legacy-server-404-page__signup .auth-oauth-panel__header h2,
.legacy-server-404-page__signup .auth-oauth-panel__title {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.legacy-server-404-page__signup .auth-oauth-panel__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legacy-server-404-page__signup .auth-oauth-button {
    min-height: 2.85rem;
    padding: 0.65rem 0.78rem;
}

.legacy-server-404-page__signup .auth-oauth-button__text {
    padding-right: 0;
}

.legacy-server-404-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-2);
}

.legacy-server-404-page__old-link,
.legacy-server-404-page__retention {
    border-color: #d8e3ee;
    background: linear-gradient(145deg, #ffffff 0%, #f6faff 100%);
}

.legacy-server-404-page__section-body {
    display: grid;
    gap: var(--space-3);
    padding: clamp(var(--space-3), 4vw, var(--space-5));
}

.legacy-server-404-page__section-body>*,
.legacy-server-404-page__section-copy>* {
    margin: 0;
}

.legacy-server-404-page__section-copy {
    display: grid;
    gap: 0.55rem;
    max-width: 62ch;
}

.legacy-server-404-page__section-copy h2 {
    font-size: clamp(1.28rem, 2.4vw, 1.7rem);
    line-height: 1.18;
}

.legacy-server-404-page__section-copy p {
    color: var(--color-text-muted);
    line-height: 1.58;
}

.legacy-server-404-page__old-link-value {
    display: grid;
    gap: 0.42rem;
}

.legacy-server-404-page__old-link-value span {
    color: #315c8b;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legacy-server-404-page__old-link-value code {
    display: block;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid #d3deea;
    border-radius: var(--radius-sm);
    background: #f3f7fc;
    padding: 0.75rem 0.92rem;
    color: var(--color-primary-dark);
    font-size: clamp(1rem, 2.4vw, 1.22rem);
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
    user-select: all;
}

.legacy-server-404-page__mini-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem var(--space-3);
    margin: 0;
    padding: 0;
    list-style: none;
}

.legacy-server-404-page__mini-benefits li {
    display: grid;
    grid-template-columns: 1.35rem minmax(0, 1fr);
    align-items: start;
    gap: 0.42rem;
    min-width: 0;
    color: #273c50;
    font-weight: 600;
    line-height: 1.38;
}

.legacy-server-404-page__mini-benefits span {
    display: inline-grid;
    place-items: center;
    width: 1.08rem;
    height: 1.08rem;
    margin-top: 0.08rem;
    border-radius: var(--radius-pill);
    background: rgba(238, 168, 73, 0.16);
    color: #bf7624;
    font-size: 0.76rem;
    font-weight: 800;
}

.error-404-page {
    border-color: #3a5168;
    background: linear-gradient(155deg, #1a2b3e 0%, #142335 100%);
}

.error-404-page__title,
.legacy-server-404-page__hero h1,
.legacy-server-404-page__section-copy h2 {
    color: #f1f6fc;
}

.error-404-page__copy,
.error-404-page__path,
.legacy-server-404-page__copy {
    color: #b5c4d5;
}

.error-404-page__path code {
    border-color: #3d536a;
    background: #111d2b;
    color: #e6eef8;
}

.legacy-server-404-page__hero {
    border-color: #3b536a;
    background: linear-gradient(145deg, #1a2b3e 0%, #142438 58%, #2f291b 100%);
}

.legacy-server-404-page__eyebrow {
    color: #8fb7e2;
}

.legacy-server-404-page__lead {
    color: #d9e4f0;
}

.legacy-server-404-page__features li {
    color: #d9e4f0;
}

.legacy-server-404-page__features span {
    background: rgba(243, 180, 95, 0.18);
    color: #ffd08b;
}

.legacy-server-404-page__lookup {
    border-color: #435a72;
    background: rgba(17, 29, 43, 0.78);
    color: #d9e4f0;
}

.legacy-server-404-page__signup .auth-oauth-panel__header h2,
.legacy-server-404-page__signup .auth-oauth-panel__title {
    color: #b5c4d5;
}

.legacy-server-404-page__old-link,
.legacy-server-404-page__retention {
    border-color: #3b536a;
    background: linear-gradient(145deg, #162639 0%, #111f30 100%);
    box-shadow: 0 12px 28px rgba(5, 12, 22, 0.32);
}

.legacy-server-404-page__section-copy p {
    color: #b5c4d5;
}

.legacy-server-404-page__old-link-value span {
    color: #8fb7e2;
}

.legacy-server-404-page__old-link-value code {
    border-color: #46617c;
    background: #0d1826;
    color: #f1f6fc;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.legacy-server-404-page__mini-benefits li {
    color: #d9e4f0;
}

.legacy-server-404-page__mini-benefits span {
    background: rgba(243, 180, 95, 0.18);
    color: #ffd08b;
}

@media (max-width: 760px) {
    .legacy-server-404-page__hero h1 {
        white-space: normal;
    }

    .legacy-server-404-page__features {
        grid-template-columns: 1fr;
    }

    .legacy-server-404-page__mini-benefits {
        grid-template-columns: 1fr;
    }

    .legacy-server-404-page__old-link-value code {
        width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .legacy-server-404-page__signup .auth-oauth-panel__actions {
        grid-template-columns: 1fr;
    }

    .legacy-server-404-page__signup>.btn,
    .legacy-server-404-page__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.page-subheader {
    border-color: #d6e1ec;
    background: linear-gradient(155deg, #ffffff 0%, #f5f9fd 100%);
    max-width: 100%;
}

.server-detail-page.game-accent .page-subheader {
    border-top: 3px solid rgba(var(--game-accent-rgb), 0.45);
}

.server-detail-page.game-accent .page-subheader__eyebrow {
    color: var(--game-accent);
}

.page-subheader .card-body.page-subheader__body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3);
    align-items: start;
    padding: var(--space-4);
    min-width: 0;
    max-width: 100%;
}

.page-subheader__breadcrumbs {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.page-subheader__breadcrumbs .site-breadcrumbs {
    margin-bottom: 0;
}

.page-subheader__leading {
    margin-bottom: 0;
    align-self: start;
}

.page-subheader__leading img {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid #d4deea;
    background: #f3f7fc;
}

.page-subheader__main {
    display: grid;
    gap: var(--space-1);
    min-width: 0;
    max-width: 100%;
}

.page-subheader__eyebrow {
    margin-bottom: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.page-subheader__title {
    margin-bottom: 0;
    font-size: clamp(1.32rem, 2.3vw, 1.78rem);
    line-height: 1.2;
}

.page-subheader__subtitle {
    margin-bottom: 0;
    color: var(--color-text-muted);
    max-width: 64ch;
    font-size: 0.93rem;
}

.page-subheader__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: var(--space-1);
}

.page-subheader__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: var(--space-2);
    min-width: 0;
    max-width: 100%;
}

.page-subheader__actions>* {
    min-width: 0;
    max-width: 100%;
}

.page-subheader__aside {
    display: grid;
    gap: var(--space-1);
    justify-items: end;
    align-content: start;
    min-width: 12rem;
    max-width: 100%;
}

.page-subheader--server-sticky {
    position: sticky;
    top: calc(var(--site-header-sticky-offset) + 0.22rem);
    z-index: 90;
    margin-bottom: 0.42rem;
    overflow: visible;
    transform: none;
    contain: none;
    border-color: rgba(158, 176, 194, 0.72);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(14px);
}

.main-container--server-sticky,
.server-detail-page,
.vote-page-layout {
    overflow: visible;
    contain: none;
    transform: none;
}

.main-container--server-sticky .page-subheader--server-sticky:hover,
.main-container--server-sticky .page-subheader--server-sticky:focus-within {
    transform: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.page-subheader--server-sticky .card-body.page-subheader__body {
    grid-template-columns: auto minmax(0, 1fr) max-content;
    gap: 0.44rem;
    row-gap: 0.08rem;
    padding: 0.34rem 0.64rem 0.28rem;
    align-items: start;
    min-width: 0;
    max-width: 100%;
}

.page-subheader--server-sticky .page-subheader__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    line-height: 1;
}

.page-subheader--server-sticky .page-subheader__title {
    font-size: clamp(0.96rem, 1.35vw, 1.08rem);
    line-height: 1.08;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-subheader--server-sticky .page-subheader__subtitle {
    display: none;
}

.page-subheader--server-sticky .page-subheader__meta,
.page-subheader--server-sticky .page-subheader__actions {
    margin-top: 0;
    gap: 0.18rem;
    min-width: 0;
    max-width: 100%;
}

.page-subheader--server-sticky .page-subheader__main {
    gap: 0.02rem;
    align-content: start;
    align-self: start;
    min-width: 0;
    overflow: hidden;
}

.page-subheader--server-sticky .page-subheader__aside {
    min-width: 0;
    width: auto;
    max-width: min(52vw, 34rem);
    flex-shrink: 0;
    gap: 0.06rem;
    justify-items: end;
    align-content: start;
    align-self: start;
}

.page-subheader--server-sticky .page-subheader__actions--aside {
    margin-top: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.26rem;
    justify-content: flex-end;
    align-self: start;
    padding-bottom: 0;
    flex-shrink: 0;
    min-width: 0;
    max-width: min(52vw, 34rem);
}

.page-subheader--server-sticky .page-subheader__actions--aside>* {
    flex-shrink: 0;
}

.page-subheader--server-sticky .page-subheader__actions--aside .btn {
    min-height: 1.52rem;
    padding: 0.12rem 0.46rem;
    font-size: 0.75rem;
    line-height: 1;
}

.page-subheader--server-sticky .page-subheader__actions--aside .server-ip-copy-box {
    padding: 0.16rem 0.42rem;
    gap: 0.26rem;
    border-radius: var(--radius-sm);
}

.page-subheader--server-sticky .page-subheader__actions--aside .server-ip-copy-box__label {
    font-size: 0.64rem;
}

.page-subheader--server-sticky .page-subheader__actions--aside .server-ip-copy-box__value {
    font-size: 0.75rem;
    line-height: 1.1;
}

.page-subheader--server-sticky .page-subheader__actions--aside .server-ip-copy-box__hint {
    font-size: 0.7rem;
    margin-top: 0;
}

.page-subheader--server-sticky .server-subheader-side-metrics {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.14rem;
    justify-content: flex-end;
    margin: 0;
}

.page-subheader--server-sticky .page-subheader__breadcrumbs .site-breadcrumbs__list {
    font-size: 0.66rem;
    gap: 0.14rem 0.26rem;
}

.page-subheader--server-sticky .page-subheader__breadcrumbs {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.32rem;
}

.page-subheader--server-sticky .page-subheader__breadcrumbs .site-breadcrumbs {
    margin-bottom: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.page-subheader--server-sticky .server-subheader-breadcrumb-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.32rem;
}

.page-subheader--server-sticky .server-subheader-top-links {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.page-subheader--server-sticky .server-subheader-top-link {
    margin-bottom: 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: #50657a;
    gap: 0.18rem;
}

.page-subheader--server-sticky .server-subheader-top-link:hover {
    color: #2f4358;
}

.server-subheader-random-form {
    display: inline-flex;
    margin: 0;
}

.page-subheader--server-sticky .page-subheader__leading img {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.66rem;
}

.page-subheader--server-sticky .page-subheader__leading {
    align-self: start;
    line-height: 0;
}

.page-subheader--server-sticky .server-subheader-side-metrics .server-subheader-metric {
    font-size: 0.7rem;
    line-height: 1.05;
    padding: 0.14rem 0.42rem;
    min-height: 1.3rem;
    border-radius: 999px;
    align-items: center;
    margin-bottom: 0;
}

.page-subheader--server-sticky .server-subheader-metric--link {
    text-decoration: none;
}

.page-subheader--server-sticky .server-subheader-metric--link:hover,
.page-subheader--server-sticky .server-subheader-metric--link:focus {
    border-color: rgba(244, 107, 69, 0.36);
    color: #d95735;
}

.page-subheader--server-sticky .server-subheader-description {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    line-height: 1.22;
    display: block;
    max-width: min(100%, 54ch);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-subheader--server-context .card-body.page-subheader__body {
    gap: 0.26rem;
    row-gap: 0;
    padding: 0.18rem 0.5rem 0.17rem;
}

.page-subheader--server-context .page-subheader__main {
    gap: 0;
}

.page-subheader--server-context .page-subheader__title {
    font-size: clamp(0.92rem, 1.35vw, 1.04rem);
    line-height: 1.02;
}

.page-subheader--server-context .page-subheader__breadcrumbs {
    gap: 0.22rem;
}

.page-subheader--server-context .server-subheader-breadcrumb-row {
    gap: 0.24rem;
}

.page-subheader--server-context .server-subheader-top-links {
    gap: 0.28rem;
}

.page-subheader--server-context .server-subheader-top-link {
    font-size: 0.69rem;
}

.page-subheader--server-context .page-subheader__actions--aside {
    margin-top: -0.08rem;
    gap: 0.18rem;
}

.page-subheader--server-context .page-subheader__actions--aside .btn {
    min-height: 1.3rem;
    padding: 0.06rem 0.34rem;
    font-size: 0.7rem;
}

.page-subheader--server-context .page-subheader__actions--aside .server-ip-copy-box {
    padding: 0.1rem 0.34rem;
    gap: 0.2rem;
}

.page-subheader--server-context .server-subheader-description {
    font-size: 0.74rem;
    line-height: 1.14;
    max-width: min(100%, 48ch);
}

.shop-page {
    display: grid;
    gap: var(--space-4);
}

.shop-success-confetti {
    position: fixed;
    inset: 0;
    z-index: 220;
    overflow: hidden;
    pointer-events: none;
}

.shop-success-confetti__particle {
    position: absolute;
    top: -1.5rem;
    width: 0.55rem;
    height: 0.9rem;
    border-radius: 0.16rem;
    background: var(--shop-confetti-color, #f3b45f);
    opacity: 0;
    transform: translate3d(0, -1rem, 0) rotate(0deg);
    animation: shop-success-confetti-fall var(--shop-confetti-duration, 1.8s) cubic-bezier(0.16, 0.72, 0.38, 1) var(--shop-confetti-delay, 0s) forwards;
}

.shop-page .state-message--success.is-shop-success-pulse {
    position: relative;
    overflow: hidden;
    animation: shop-success-pulse 1150ms var(--motion-ease) both;
}

@keyframes shop-success-confetti-fall {
    0% {
        opacity: 0;
        transform: translate3d(0, -1rem, 0) rotate(0deg);
    }

    14% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(var(--shop-confetti-drift, 0), calc(100vh + 3rem), 0) rotate(var(--shop-confetti-spin, 360deg));
    }
}

@keyframes shop-success-pulse {
    0% {
        box-shadow: 0 0 0 rgba(118, 182, 137, 0);
        transform: translateY(0);
    }

    34% {
        box-shadow: 0 0 0 4px rgba(118, 182, 137, 0.26), 0 14px 28px rgba(44, 90, 58, 0.16);
        transform: translateY(-1px);
    }

    100% {
        box-shadow: 0 0 0 rgba(118, 182, 137, 0);
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-success-confetti {
        display: none;
    }

    .shop-page .state-message--success.is-shop-success-pulse {
        animation: none;
        box-shadow: 0 0 0 3px rgba(118, 182, 137, 0.24);
    }
}

.shop-page__hero-card {
    border-color: #d6e1eb;
    background-color: #f6f9fd;
    background-image: url("/assets/images/components/credits-shop-bg.png");
    background-size: cover;
    background-position: center calc(50% - 10px);
    background-repeat: no-repeat;
    box-shadow: var(--shadow-md);
}

.shop-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    min-height: 17.25rem;
    text-align: center;
}

.shop-page__hero-copy h1 {
    margin-bottom: var(--space-1);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.82);
}

.shop-page__hero-copy p {
    margin-bottom: var(--space-2);
    color: var(--color-text-muted);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.78);
}

.shop-page__hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: 0;
}

.shop-page__hero-side {
    display: grid;
    justify-items: center;
    min-height: 5.6rem;
    align-items: center;
}

.shop-page__balance {
    border: 1px solid #d8e2ec;
    border-radius: var(--radius-md);
    padding: 0.75rem 0.95rem;
    background: linear-gradient(165deg, #f7faff 0%, #edf4fb 100%);
    color: #2f3d4d;
    margin-bottom: 0;
    min-width: 13rem;
    min-height: 4.9rem;
    display: grid;
    align-content: center;
}

.shop-page__balance strong {
    font-size: 1.3rem;
    letter-spacing: 0.01em;
    margin-right: 0.2rem;
}

.shop-page__balance-label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #607180;
}

.shop-page__trust-note {
    margin-bottom: 0;
}

.shop-tilt-plus-promo {
    border-color: #dccda0;
    background: linear-gradient(145deg, #fffaf0 0%, #fff5de 100%);
    box-shadow: 0 6px 14px rgba(160, 118, 23, 0.1);
    margin-top: var(--space-2);
}

.shop-tilt-plus-promo--active {
    border-color: #c7d5e4;
    background: linear-gradient(155deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow: var(--shadow-sm);
}

.shop-tilt-plus-promo__body {
    display: grid;
    gap: var(--space-2);
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.shop-tilt-plus-promo__eyebrow {
    margin-bottom: 0;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #77550c;
}

.shop-tilt-plus-promo__body h2 {
    margin-bottom: 0;
    font-size: clamp(1.05rem, 1.9vw, 1.3rem);
}

.shop-tilt-plus-promo__body p {
    margin-bottom: 0;
    color: #52493a;
}

.shop-tilt-plus-promo--active .shop-tilt-plus-promo__eyebrow {
    color: #5d6f82;
}

.shop-tilt-plus-promo--active .shop-tilt-plus-promo__body p {
    color: var(--color-text-muted);
}

.shop-tilt-plus-promo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.shop-section {
    margin-bottom: 0;
}

.shop-section__header {
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}

.shop-section__header h2 {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: var(--space-1);
    font-size: 1.12rem;
}

.shop-section__header p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-3);
}

.shop-grid--featured .shop-item-card {
    border-color: #d2deea;
}

.shop-grid--single {
    grid-template-columns: minmax(280px, 520px);
}

.shop-page__curation-note {
    margin: calc(var(--space-2) * -1) 0 0;
    color: var(--color-text-muted);
    font-size: 0.84rem;
}

.shop-section--transfer .shop-section__header {
    background: linear-gradient(165deg, #f8fbff 0%, #f0f6fd 100%);
    border-radius: var(--radius-md);
}

.shop-item-card {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    border-color: #d6e1eb;
    box-shadow: var(--shadow-sm);
}

.shop-item-card .card-body {
    display: grid;
    gap: var(--space-2);
    height: 100%;
}

.shop-item-card--reward-art .card-body {
    grid-template-rows: auto auto auto auto auto 1fr;
    gap: var(--space-3);
    padding: var(--space-2);
}

.shop-item-card__header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(165deg, #f8fbff 0%, #f2f7fc 100%);
}

.shop-item-card__title {
    font-weight: 700;
    line-height: 1.3;
}

.shop-item-card__icon-wrap {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #f3b45f 0%, #eea849 100%);
    color: #2c3743;
    box-shadow: 0 6px 12px rgba(238, 168, 73, 0.28);
}

.shop-item-card__icon-wrap .ui-icon {
    width: 1rem;
    height: 1rem;
}

.shop-item-card__description {
    margin-bottom: 0;
    color: var(--color-text-muted);
    line-height: 1.45;
    font-size: 0.92rem;
}

.shop-item-card__reward-art {
    height: clamp(9rem, 13vw, 11.25rem);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #0f1b2a;
}

.shop-item-card__reward-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-item-card__body-title {
    margin-bottom: 0;
    color: var(--color-primary-dark);
    font-size: 1.05rem;
    line-height: 1.3;
}

.shop-item-card__price {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.shop-item-card__price--strong {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.shop-item-card__price-amount {
    font-size: 1.52rem;
    line-height: 1;
    letter-spacing: 0.01em;
}

.shop-item-card__price-unit {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.shop-item-card__price-original {
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-right: 0.35rem;
    font-weight: 500;
}

.shop-item-card__meta {
    margin-bottom: 0;
    font-size: 0.84rem;
    color: var(--color-text-muted);
}

.shop-item-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0;
}

.shop-item-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4deea;
    border-radius: var(--radius-pill);
    background: #f4f8fc;
    color: #3f5266;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 0.2rem 0.55rem;
}

.shop-item-card__label--audience {
    background: #f3f7fc;
    border-color: #d5e0eb;
}

.shop-item-card__label--fulfillment {
    background: #fff6e6;
    border-color: #efd7aa;
    color: #6c4f1b;
}

.shop-item-card__label--giftable {
    background: #ecf7f1;
    border-color: #b7dec8;
    color: #1f5e3b;
}

.shop-item-card__label--digital {
    background: #eef3ff;
    border-color: #cdd8f3;
    color: #3b4f76;
}

.shop-item-card__label--physical {
    background: #fff0f0;
    border-color: #e8c2c2;
    color: #7a3232;
}

.shop-item-card__benefits {
    margin: 0;
    padding-left: 1rem;
    color: #3f5266;
    font-size: 0.88rem;
    line-height: 1.4;
}

.shop-item-card__benefits li {
    margin-bottom: 0.22rem;
}

.shop-item-card__benefits li:last-child {
    margin-bottom: 0;
}

.shop-item-card__hint {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.shop-item-card__flow-hint {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: #5d6f82;
}

.shop-item-card__state {
    margin-bottom: 0;
    border: 1px solid #f2d7ae;
    border-radius: var(--radius-sm);
    background: #fff8ef;
    color: #7f5b1e;
    font-size: 0.84rem;
    padding: 0.4rem 0.55rem;
}

.shop-item-card__state--warning {
    border-color: #f2d7ae;
    background: #fff8ef;
}

.shop-item-card__shortfall-action {
    margin-bottom: 0;
}

.shop-item-preview {
    margin: var(--space-3) 0;
    padding: 0.65rem;
    border: 1px solid #d6e1eb;
    border-radius: var(--radius-sm);
    background: #f7fafd;
}

.shop-item-preview__label {
    margin: 0 0 0.38rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5b6d80;
}

.shop-item-preview__context {
    margin: 0 0 0.4rem;
    font-size: 0.77rem;
    color: #586a7c;
}

.shop-item-preview__announcement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    border: 1px solid #f0c66f;
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(165deg, #fff6df 0%, #ffefd0 100%);
}

.shop-item-preview__announcement-text {
    font-size: 0.72rem;
    color: #604408;
}

.shop-item-preview__announcement-cta {
    border: 1px solid #d88f30;
    border-radius: var(--radius-pill);
    padding: 0.1rem 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #553b06;
    background: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.shop-preview-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #d6e1eb;
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.45rem;
    background: #ffffff;
}

.shop-preview-row--premium-highlight {
    border-color: #f2c15a;
    background: linear-gradient(165deg, #fff9ed 0%, #fff4dc 100%);
}

.shop-preview-row__rank.rank-badge {
    min-width: 1.55rem;
    min-height: 1.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.shop-preview-row__body {
    min-width: 0;
}

.shop-preview-row__name {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.35;
}

.shop-preview-row__meta {
    margin: 0.12rem 0 0;
    font-size: 0.72rem;
    color: #647789;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-item-card form {
    margin-bottom: 0;
    display: grid;
    gap: var(--space-2);
    height: 100%;
}

.shop-item-card--reward-art form,
.shop-item-card--reward-art .shop-item-card__auth-action {
    align-self: end;
    margin-top: auto;
}

.shop-item-card--reward-art form {
    height: auto;
}

.shop-item-card__buy {
    width: 100%;
    min-height: 2.5rem;
}

.shop-item-card__intent-panel {
    display: grid;
    gap: var(--space-2);
    border: 1px solid #d8e3ee;
    border-radius: var(--radius-sm);
    padding: var(--space-2);
    background: #f8fbff;
}

.shop-item-card__intent-panel[hidden] {
    display: none;
}

.shop-item-card__intent-actions {
    display: grid;
    gap: var(--space-2);
}

.shop-page__help .card-body {
    display: grid;
    gap: var(--space-1);
}

.shop-page__help p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.shop-page__credit-crates {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-3);
}

.shop-page__credit-crates-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-3);
}

.shop-page__credit-crates-header h2,
.shop-page__credit-crates-header p {
    margin-bottom: 0;
}

.shop-page__credit-crates-header h2 {
    color: var(--color-primary-dark);
}

.shop-page__credit-crates-header>div {
    display: grid;
    gap: var(--space-1);
}

.shop-page__credit-crates-header p:not(.shop-page__credit-crates-eyebrow) {
    color: var(--color-text-muted);
}

.shop-page__credit-crates-eyebrow {
    color: #8a5b13;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-page__credit-crate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
    align-items: stretch;
}

.shop-credit-crate {
    margin-bottom: 0;
    border-color: #d6e1eb;
    box-shadow: var(--shadow-sm);
}

.shop-credit-crate--custom {
    grid-column: 1 / -1;
}

.shop-credit-crate__body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: var(--space-3);
    min-height: 100%;
    padding: var(--space-2);
}

.shop-credit-crate__visual {
    height: clamp(9rem, 13vw, 11.25rem);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #0f1b2a;
}

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

.shop-credit-crate__copy {
    display: grid;
    align-content: start;
    gap: var(--space-2);
    padding: 0 var(--space-1);
}

.shop-credit-crate__copy h3,
.shop-credit-crate__copy p,
.shop-credit-crate__action {
    margin-bottom: 0;
}

.shop-credit-crate__copy h3 {
    color: var(--color-primary-dark);
    font-size: 1.05rem;
    line-height: 1.3;
}

.shop-credit-crate__badge {
    width: fit-content;
}

.shop-credit-crate--popular {
    border-color: #efd08d;
    box-shadow: 0 12px 26px rgba(204, 137, 38, 0.12);
}

.shop-credit-crate--popular .shop-credit-crate__badge,
.shop-credit-crate--value .shop-credit-crate__badge {
    background: #fff6e6;
    border-color: #efd7aa;
    color: #6c4f1b;
}

.shop-credit-crate__credits {
    color: var(--color-primary-dark);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.05;
}

.shop-credit-crate__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: #8a5b13;
    font-size: 1.15rem;
    font-weight: 800;
}

.shop-credit-crate__savings {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9dfc8;
    border-radius: var(--radius-pill);
    background: #eaf8ef;
    color: #21613e;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.1;
    padding: 0.18rem 0.48rem;
}

.shop-credit-crate__description {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.shop-credit-crate__action {
    display: grid;
    padding: 0 var(--space-1) var(--space-1);
}

.shop-credit-crate__action .btn {
    width: 100%;
    min-height: 2.5rem;
}

.shop-credit-crate--custom .shop-credit-crate__body {
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr) auto;
    grid-template-rows: 1fr auto;
    align-items: stretch;
    gap: var(--space-3);
}

.shop-credit-crate--custom .shop-credit-crate__visual {
    grid-row: 1 / 3;
    height: auto;
    min-height: 12rem;
}

.shop-credit-crate--custom .shop-credit-crate__visual img {
    object-fit: cover;
}

.shop-credit-crate--custom .shop-credit-crate__copy {
    align-self: center;
    padding: 0;
}

.shop-credit-crate--custom .shop-credit-crate__action {
    align-self: end;
    justify-self: end;
    min-width: 12rem;
    padding: 0 0 var(--space-1);
}

.shop-payment-trust {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-1);
    border: 1px solid #d9e5f1;
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.shop-payment-trust__copy {
    display: grid;
    gap: 0.2rem;
}

.shop-payment-trust__copy p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
}

.shop-payment-trust__copy strong {
    color: var(--color-primary-dark);
}

.shop-payment-trust__methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.shop-payment-trust__method {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 2rem;
    border: 1px solid #cbd8e6;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: #34495e;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.34rem 0.62rem;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 6px 14px rgba(31, 48, 67, 0.07);
}

.shop-payment-trust__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.3rem;
    min-height: 1.18rem;
    border-radius: 0.22rem;
    padding: 0 0.28rem;
    background: #edf3f9;
    color: #24364a;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
}

.shop-payment-trust__method--visa .shop-payment-trust__brand {
    background: #1a1f71;
    color: #ffffff;
}

.shop-payment-trust__method--mastercard .shop-payment-trust__brand {
    position: relative;
    min-width: 2.2rem;
    background: transparent;
}

.shop-payment-trust__method--mastercard .shop-payment-trust__brand::before,
.shop-payment-trust__method--mastercard .shop-payment-trust__brand::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 999px;
    transform: translateY(-50%);
}

.shop-payment-trust__method--mastercard .shop-payment-trust__brand::before {
    left: 0.34rem;
    background: #eb001b;
}

.shop-payment-trust__method--mastercard .shop-payment-trust__brand::after {
    right: 0.34rem;
    background: rgba(247, 158, 27, 0.9);
    box-shadow: -0.35rem 0 0 rgba(255, 95, 0, 0.78);
}

.shop-payment-trust__method--amex .shop-payment-trust__brand {
    background: #f4f8fc;
    color: #0f1722;
}

.shop-payment-trust__method--discover .shop-payment-trust__brand {
    background: linear-gradient(90deg, #ffffff 0%, #f58220 100%);
    color: #263442;
}

.shop-payment-trust__method--apple-pay .shop-payment-trust__brand {
    background: #111111;
    color: #ffffff;
}

.shop-payment-trust__method--google-pay .shop-payment-trust__brand {
    border: 1px solid #d8e0e8;
    background: #f8fafc;
    color: #18212a;
    text-shadow: none;
}

.shop-payment-trust__method--link .shop-payment-trust__brand {
    background: #00d66f;
    color: #062114;
}

.shop-payment-trust__method--stripe .shop-payment-trust__brand {
    background: #f4f8fc;
    color: #0f1722;
}

.shop-tilt-plus-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: var(--space-3);
}

.shop-tilt-plus-modal[hidden] {
    display: none;
}

.shop-tilt-plus-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.56);
}

.shop-tilt-plus-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 31rem);
    max-height: min(90vh, 42rem);
    overflow: auto;
    border: 1px solid #d9e5f1;
    border-radius: var(--radius-lg);
    background: var(--color-bg-surface);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.shop-tilt-plus-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-4) var(--space-2);
}

.shop-tilt-plus-modal__head h2 {
    margin: 0;
    color: var(--color-primary-dark);
    font-size: 1.28rem;
    line-height: 1.25;
}

.shop-tilt-plus-modal__close {
    flex: 0 0 auto;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    border-color: #d6e1eb;
    background: #f5f8fb;
    color: #43566a;
}

.shop-tilt-plus-modal__close .ui-icon {
    width: 1rem;
    height: 1rem;
}

.shop-tilt-plus-modal__body {
    display: grid;
    gap: var(--space-3);
    padding: 0 var(--space-4) var(--space-4);
}

.shop-tilt-plus-modal__body p,
.shop-tilt-plus-modal__body ul {
    margin-bottom: 0;
}

.shop-tilt-plus-modal__body p {
    color: var(--color-text-muted);
}

.shop-tilt-plus-modal__body ul {
    display: grid;
    gap: 0.45rem;
    padding-left: 1.15rem;
}

.shop-tilt-plus-modal__actions {
    display: grid;
    gap: var(--space-2);
}

.shop-tilt-plus-modal__actions .btn {
    width: 100%;
}

.shop-page__gift-feature {
    border-color: #e2c98f;
    background:
        radial-gradient(circle at 10% 10%, rgba(243, 180, 95, 0.2), transparent 30%),
        linear-gradient(165deg, #fffaf0 0%, #f4f8fc 100%);
}

.shop-page__account-layout {
    display: grid;
    grid-template-columns: minmax(17rem, 22rem) minmax(0, 1fr);
    gap: var(--space-4);
    align-items: start;
    overflow: visible;
}

.shop-page__account-sidebar,
.shop-page__account-main,
.shop-page__content {
    display: grid;
    gap: var(--space-3);
    align-content: start;
    min-width: 0;
}

.shop-page__recent-purchases {
    position: relative;
    margin-bottom: 0;
}

.shop-page__recent-purchases::before {
    content: "";
    display: block;
    margin-bottom: var(--space-3);
    border-top: 1px solid #d7e2ee;
}

.shop-page__account-sidebar {
    align-self: start;
    gap: 0.55rem;
    height: max-content;
    max-height: none;
    overflow: visible;
    position: -webkit-sticky;
    position: sticky;
    top: 4.45rem;
    top: calc(var(--site-header-sticky-offset, 3.7rem) + var(--space-3));
    z-index: 3;
    padding-right: var(--space-3);
    border-right: 1px solid #d7e2ee;
}

.shop-page__gift-feature-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 11rem;
    grid-template-areas:
        "content visual"
        "details details";
    align-items: start;
    gap: var(--space-3);
    padding: 0.85rem 0.85rem var(--space-4) var(--space-4);
}

.shop-page__gift-content {
    grid-area: content;
    display: grid;
    gap: var(--space-1);
    align-self: start;
    max-width: 24rem;
}

.shop-page__gift-content h2,
.shop-page__gift-content p {
    margin-bottom: 0;
}

.shop-page__gift-content h2 {
    color: var(--color-primary-dark);
    font-size: clamp(1.35rem, 2vw, 1.78rem);
    line-height: 1.16;
}

.shop-page__gift-content p {
    color: var(--color-text-muted);
    font-size: 0.96rem;
}

.shop-page__gift-visual {
    grid-area: visual;
    position: relative;
    justify-self: end;
    align-self: start;
    width: 11rem;
    height: 11rem;
    border-radius: 0;
    background: url("/assets/images/components/Gift_Icon.png") center / contain no-repeat;
    box-shadow: none;
}

.shop-page__gift-details {
    grid-area: details;
    display: grid;
    justify-items: end;
    align-self: end;
    gap: var(--space-3);
}

.shop-page__gift-details summary {
    list-style: none;
    display: inline-flex;
    cursor: pointer;
    min-width: 10rem;
}

.shop-page__gift-details summary::-webkit-details-marker {
    display: none;
}

.shop-page__gift-panel {
    margin-top: var(--space-3);
    display: grid;
    width: min(100%, 560px);
    grid-column: 1 / -1;
    justify-self: end;
}

.shop-page__account-sidebar .shop-page__gift-feature-body {
    grid-template-columns: minmax(0, 1fr) 5.2rem;
    grid-template-areas:
        "content visual"
        "details details";
    justify-items: start;
    gap: 0.5rem 0.65rem;
    padding: 0.6rem 0.65rem 0.7rem 0.75rem;
}

.shop-page__account-sidebar .shop-page__gift-visual {
    width: 5.2rem;
    height: 5.2rem;
}

.shop-page__account-sidebar .shop-page__gift-content h2,
.shop-page__account-sidebar .shop-credit-activity__header h2,
.shop-page__account-sidebar .shop-sidebar-earn-card__header h2 {
    font-size: clamp(1.18rem, 1.6vw, 1.38rem);
}

.shop-page__account-sidebar .shop-page__gift-content {
    gap: 0.22rem;
}

.shop-page__account-sidebar .shop-page__gift-content h2 {
    font-size: 1rem;
    line-height: 1.15;
}

.shop-page__account-sidebar .shop-page__gift-content p {
    font-size: 0.8rem;
    line-height: 1.28;
}

.shop-page__account-sidebar .shop-sidebar-earn-card__header h2 {
    font-size: 1rem;
}

.shop-page__account-sidebar .shop-page__gift-details,
.shop-page__account-sidebar .shop-page__gift-details summary,
.shop-page__account-sidebar .shop-page__gift-panel {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    justify-items: stretch;
}

.shop-page__account-sidebar .shop-page__gift-details {
    gap: 0.45rem;
}

.shop-page__account-sidebar .shop-page__gift-details summary {
    min-height: 2.05rem;
    min-width: 0;
    padding: 0.42rem 0.62rem;
    font-size: 0.82rem;
}

.shop-page__account-sidebar .shop-page__gift-details summary .ui-icon {
    width: 0.88rem;
    height: 0.88rem;
}

.shop-page__account-sidebar .shop-page__gift-panel {
    margin-top: 0.45rem;
}

.shop-page__account-sidebar .shop-credit-activity__header {
    align-items: center;
    flex-direction: row;
    gap: 0.55rem;
}

.shop-page__account-sidebar .shop-credit-activity__header>div {
    min-width: 0;
}

.shop-page__account-sidebar .shop-credit-activity__header h2 {
    font-size: 0.98rem;
    line-height: 1.18;
}

.shop-page__account-sidebar .shop-credit-activity__header .btn {
    flex: 0 0 auto;
    min-height: 1.95rem;
    padding: 0.34rem 0.5rem;
    gap: 0.3rem;
    font-size: 0.72rem;
    white-space: nowrap;
}

.shop-page__account-sidebar .shop-credit-activity__header .btn .ui-icon {
    width: 0.82rem;
    height: 0.82rem;
}

.shop-page__account-sidebar .shop-credit-activity__row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "type amount"
        "date amount";
    gap: 0.18rem;
    padding: 0.38rem 0.55rem;
    font-size: 0.76rem;
    line-height: 1.18;
}

.shop-page__account-sidebar .shop-credit-activity__row span:first-child {
    grid-area: date;
    color: var(--color-text-muted);
    font-size: 0.71rem;
}

.shop-page__account-sidebar .shop-credit-activity__row span:nth-child(2) {
    grid-area: type;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-page__account-sidebar .shop-credit-activity__row strong {
    grid-area: amount;
    align-self: center;
    min-width: 0;
}

.shop-page__account-sidebar .shop-credit-activity__row--head {
    display: none;
}

.shop-page__account-sidebar .shop-credit-activity__row strong {
    justify-self: start;
}

.shop-page__account-sidebar .shop-credit-activity__body {
    gap: 0.45rem;
    padding: 0.6rem 0.65rem;
}

.shop-page__account-sidebar .shop-credit-activity__body .state-message {
    padding: 0.55rem 0.65rem;
    font-size: 0.78rem;
    line-height: 1.28;
}

.shop-sidebar-earn-card {
    border-color: #e2c98f;
    background:
        radial-gradient(circle at 95% 0%, rgba(243, 180, 95, 0.16), transparent 42%),
        linear-gradient(165deg, #fffaf0 0%, #f4f8fc 100%);
}

.shop-sidebar-earn-card__body {
    display: grid;
    gap: 0.42rem;
    padding: 0.65rem 0.75rem;
}

.shop-sidebar-earn-card__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.48rem;
}

.shop-sidebar-earn-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border: 1px solid #e0b35a;
    border-radius: var(--radius-pill);
    background: linear-gradient(160deg, #f3b45f 0%, #eea849 100%);
    color: var(--color-primary-dark);
    box-shadow: 0 5px 11px rgba(238, 168, 73, 0.16);
}

.shop-sidebar-earn-card__icon .ui-icon {
    width: 0.82rem;
    height: 0.82rem;
}

.shop-sidebar-earn-card__header h2,
.shop-sidebar-earn-card__header p,
.shop-sidebar-earn-card__copy,
.shop-sidebar-earn-card__action {
    margin-bottom: 0;
}

.shop-sidebar-earn-card__header h2 {
    color: var(--color-primary-dark);
    line-height: 1.16;
    font-size: 1rem;
}

.shop-sidebar-earn-card__eyebrow {
    color: #8a5b13;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-sidebar-earn-card__copy {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    line-height: 1.3;
}

.shop-sidebar-earn-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
}

.shop-sidebar-earn-card__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 1.32rem;
    padding: 0.16rem 0.4rem;
    border: 1px solid #d9e5f1;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.58);
    color: #53677b;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.1;
}

.shop-sidebar-earn-card__action {
    font-size: 0.82rem;
    font-weight: 700;
}

.shop-sidebar-earn-card__action a {
    color: #8a5b13;
    text-decoration: none;
}

.shop-sidebar-earn-card__action a:hover {
    color: var(--color-accent-coral);
    text-decoration: underline;
}

.shop-sidebar-earn-card__action .ui-icon {
    width: 0.9rem;
    height: 0.9rem;
}

.shop-credit-activity__body {
    display: grid;
    gap: 0.6rem;
}

.shop-credit-activity__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.shop-credit-activity__header h2,
.shop-credit-activity__header p {
    margin-bottom: 0;
}

.shop-credit-activity__header h2 {
    color: var(--color-primary-dark);
}

.shop-credit-activity__eyebrow {
    color: #8a5b13;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-credit-activity__receipt {
    display: grid;
    border: 1px solid #d9e5f1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
}

.shop-credit-activity__row {
    display: grid;
    grid-template-columns: minmax(7rem, 0.8fr) minmax(10rem, 1.2fr) minmax(6rem, auto);
    gap: var(--space-2);
    align-items: center;
    padding: 0.72rem 0.9rem;
    border-top: 1px dashed #dce6f0;
    font-size: 0.9rem;
}

.shop-credit-activity__row:first-child {
    border-top: 0;
}

.shop-credit-activity__row--head {
    border-top: 0;
    background: #f4f8fc;
    color: #5b6d80;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shop-credit-activity__row strong {
    justify-self: end;
    font-weight: 800;
}

.shop-credit-activity__amount--credit {
    color: #1f6b3d;
}

.shop-credit-activity__amount--debit {
    color: #9a3a2f;
}

@media (max-width: 1040px) {
    .shop-page__account-layout {
        grid-template-columns: 1fr;
    }

    .shop-page__account-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
        border-right: 0;
    }

    .shop-page__credit-crate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-credit-crate--custom {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .page-subheader .card-body.page-subheader__body {
        grid-template-columns: 1fr;
    }

    .page-subheader__aside {
        justify-items: start;
        min-width: 0;
    }

    .shop-page__hero {
        grid-template-columns: 1fr;
        padding: var(--space-4);
    }

    .shop-page__hero-side {
        justify-items: center;
        width: 100%;
    }

    .shop-page__balance {
        width: 100%;
    }

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

    .shop-grid--single {
        grid-template-columns: 1fr;
    }

    .shop-page__credit-crates-header {
        align-items: stretch;
    }

    .shop-page__credit-crates {
        padding: var(--space-2);
    }

    .shop-page__credit-crate-grid {
        grid-template-columns: 1fr;
    }

    .shop-credit-crate--custom {
        grid-column: auto;
    }

    .shop-credit-crate--custom .shop-credit-crate__body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
    }

    .shop-credit-crate--custom .shop-credit-crate__visual {
        grid-row: auto;
        height: clamp(9rem, 46vw, 11rem);
        min-height: 0;
    }

    .shop-credit-crate--custom .shop-credit-crate__copy {
        align-self: start;
        padding: 0 var(--space-1);
    }

    .shop-credit-crate--custom .shop-credit-crate__action {
        justify-self: stretch;
        min-width: 0;
        padding: 0 var(--space-1) var(--space-1);
    }

    .shop-payment-trust {
        grid-template-columns: 1fr;
        padding: var(--space-3);
    }

    .shop-payment-trust__methods {
        justify-content: flex-start;
    }

    .shop-page__gift-feature-body {
        grid-template-columns: minmax(0, 1fr) 7.75rem;
        grid-template-areas:
            "content visual"
            "details details";
        justify-items: start;
    }

    .shop-page__account-sidebar .shop-page__gift-feature-body {
        grid-template-columns: minmax(0, 1fr) 5.2rem;
    }

    .shop-page__gift-visual {
        width: 7.75rem;
        height: 7.75rem;
    }

    .shop-page__account-sidebar .shop-page__gift-visual {
        width: 5.2rem;
        height: 5.2rem;
    }

    .shop-page__gift-details {
        width: 100%;
        justify-items: stretch;
    }

    .shop-page__gift-details summary {
        width: 100%;
    }

    .shop-page__gift-panel {
        max-width: 100%;
        width: 100%;
        justify-self: stretch;
    }

    .shop-credit-activity__header {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-page__account-sidebar .shop-credit-activity__header {
        align-items: center;
        flex-direction: row;
    }

    .shop-credit-activity__row {
        grid-template-columns: 1fr;
        gap: 0.28rem;
    }

    .shop-page__account-sidebar .shop-credit-activity__row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.18rem;
    }

    .shop-credit-activity__row--head {
        display: none;
    }

    .shop-credit-activity__row strong {
        justify-self: start;
    }

    .vote-stat-grid {
        grid-template-columns: 1fr;
    }

    .page-subheader--server-sticky {
        top: calc(var(--site-header-sticky-offset) + 0.14rem);
    }

    .page-subheader--server-sticky .page-subheader__subtitle {
        display: none;
    }

    .page-subheader--server-sticky .card-body.page-subheader__body {
        grid-template-columns: auto minmax(0, 1fr) max-content;
    }

    .page-subheader--server-sticky .page-subheader__aside {
        grid-column: auto;
        justify-items: end;
        min-width: 0;
    }

    .page-subheader--server-sticky .page-subheader__actions--aside {
        flex-wrap: nowrap;
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .page-subheader--server-sticky .page-subheader__leading img {
        width: 2.4rem;
        height: 2.4rem;
    }

    .error-404-page__actions .btn {
        width: 100%;
    }

    .legacy-server-404-page__actions .btn {
        width: 100%;
    }

}

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

    .vote-action-card__server-summary {
        grid-template-columns: minmax(0, 1fr);
        align-items: center;
    }

    .vote-action-card__server-summary--with-banner {
        grid-template-columns: minmax(0, 1fr);
    }

    .vote-action-card__banner {
        justify-items: start;
    }

    .server-vote-form__prep-row {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .vote-success-card {
        padding: var(--space-3);
    }

    .vote-success-card__metrics {
        grid-template-columns: 1fr;
    }

    .vote-guest-reward-helper__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 620px) {
    .vote-action-card__server-summary {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.65rem;
        padding: 0.68rem 0.68rem 0.62rem;
    }

    .vote-action-card__server-icon {
        width: 3rem;
        height: 3rem;
    }

    .vote-action-card__server-name {
        font-size: clamp(1rem, 5vw, 1.22rem);
    }

    .vote-action-card__server-badges {
        gap: 0.28rem;
    }

    .vote-action-card__badge {
        min-height: 1.45rem;
        padding: 0.18rem 0.46rem;
        font-size: 0.68rem;
    }

    .vote-action-card__header {
        padding: var(--space-3) var(--space-3) var(--space-2);
    }

    .vote-action-card__header-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.38rem;
    }

    .vote-action-card__status {
        justify-content: flex-start;
        text-align: left;
    }

    .vote-action-card__notice {
        margin-inline: var(--space-3);
    }

    .vote-action-card > .server-vote-form {
        padding-inline: var(--space-3);
        padding-bottom: var(--space-3);
    }

    .vote-leaderboard-card__header,
    .vote-leaderboard-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .vote-leaderboard-card__total {
        justify-content: center;
    }

    .vote-leaderboard-table th:nth-child(1),
    .vote-leaderboard-table td:nth-child(1) {
        width: 5.8rem;
    }

    .vote-leaderboard-table th:nth-child(3),
    .vote-leaderboard-table td:nth-child(3) {
        width: 4.5rem;
    }

    .vote-leaderboard-rank,
    .vote-leaderboard-player {
        gap: 0.32rem;
    }

    .vote-leaderboard-rank__medal {
        width: 1.45rem;
        height: 1.45rem;
    }

    .vote-leaderboard-pagination .btn {
        width: 100%;
    }

    .vote-account-benefits-card {
        gap: var(--space-2);
        padding: var(--space-3);
    }

    .vote-account-benefits-list {
        grid-template-columns: 1fr;
    }

    .vote-account-benefits-card__actions .btn {
        width: 100%;
    }

    .vote-account-benefits-card__oauth .auth-oauth-panel__actions {
        grid-template-columns: 1fr;
    }

    .vote-action-card {
        gap: var(--space-2);
        padding: var(--space-2);
    }

    .vote-success-card {
        gap: var(--space-2);
        padding: var(--space-2);
    }

    .vote-success-card__header {
        grid-template-columns: 1fr;
    }

    .vote-success-card__icon {
        width: 2.55rem;
        height: 2.55rem;
        font-size: 1.45rem;
    }

    .vote-success-card__header h2 {
        font-size: 1.45rem;
    }

    .vote-success-card__actions .btn {
        width: 100%;
    }

    .vote-action-card__header h2 {
        font-size: 1.35rem;
    }

    .vote-action-step {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.4rem;
        padding: 0;
    }

    .vote-captcha-benefits__oauth .auth-oauth-panel__actions,
    .vote-captcha-benefits__actions {
        grid-template-columns: 1fr;
    }

    .vote-action-step__marker {
        display: none;
    }

    .server-vote-button {
        min-height: 4.75rem;
    }

    .hold-submit__content {
        gap: var(--space-1);
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .hold-submit__label {
        font-size: 1rem;
    }

    .vote-rewards-tier {
        grid-template-columns: 1fr;
    }

    .vote-credit-use-list {
        grid-template-columns: 1fr;
    }

    .vote-rewards-tier__value {
        white-space: normal;
    }
}

@keyframes hold-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes flash-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reward-earned-highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(118, 182, 137, 0.38);
        transform: translateY(0);
    }

    30% {
        box-shadow: 0 0 0 7px rgba(118, 182, 137, 0.16);
        transform: translateY(-1px);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(118, 182, 137, 0);
        transform: translateY(0);
    }
}

@keyframes reward-earned-burst {
    from {
        opacity: 0.75;
        transform: scale(0.5);
    }

    to {
        opacity: 0;
        transform: scale(1.15);
    }
}

@keyframes reward-earned-badge {
    0% {
        opacity: 0;
        transform: translateY(6px) scale(0.92);
    }

    20% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes credit-reward-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 158, 104, 0.34);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(67, 158, 104, 0);
    }
}

@keyframes credit-auth-alert {
    0% {
        box-shadow: 0 0 0 0 rgba(185, 42, 42, 0.42);
        transform: translateX(0);
    }

    25% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(1px);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(185, 42, 42, 0);
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .state-message.is-reward-highlight {
        animation: none;
    }

    .reward-earned-burst,
    .reward-earned-badge {
        animation: none;
        display: none;
    }

    .credit-emphasis--reward,
    .credit-emphasis--auth {
        animation: none;
    }
}

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

.site-breadcrumbs {
    margin-bottom: var(--space-3);
}

.site-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-text-muted);
    font-size: 0.84rem;
}

.site-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.site-breadcrumbs__item:not(:last-child)::after {
    content: '/';
    color: #a7b4c2;
}

.site-breadcrumbs__link {
    color: #48617b;
    text-decoration: none;
}

.site-breadcrumbs__link:hover {
    color: #2e4359;
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.site-breadcrumbs__current {
    color: #42576c;
    font-weight: 600;
}

.server-detail-main>section,
.server-detail-main>nav {
    margin-bottom: 0;
    min-width: 0;
    max-width: 100%;
}

.server-detail-main>section:last-child,
.server-detail-main>nav:last-child {
    margin-bottom: 0;
}

.server-banner {
    width: 468px;
    height: 60px;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

.banner-container__inner {
    min-height: 7rem;
    border-radius: var(--radius-md);
    padding: var(--space-4);
    background: linear-gradient(120deg, rgba(60, 72, 87, 0.95), rgba(244, 107, 69, 0.85));
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-container__inner h2 {
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.tab-navigation .card-body {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tab-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    background: var(--color-bg-soft);
    color: var(--color-primary-dark);
    padding: 0.35rem 0.85rem;
    font-weight: 500;
}

.tab-navigation a:hover {
    border-color: var(--color-accent-coral);
    color: var(--color-accent-coral);
}


.server-detail-page {
    --server-detail-gap: 0.72rem;
    --server-detail-panel-pad: 0.86rem;
    --server-detail-panel-pad-tight: 0.74rem;
    --server-subheader-sticky-height: 3.15rem;
    --sticky-offset: calc(var(--site-header-sticky-offset) + var(--server-subheader-sticky-height) + 2.8rem);
    display: grid;
    gap: var(--server-detail-gap);
    min-width: 0;
    max-width: 100%;
}

.server-detail-page :target,
.vote-page-layout :target {
    scroll-margin-top: calc(var(--site-header-sticky-offset) + var(--server-subheader-sticky-height, 3.2rem) + 1rem);
}

.server-detail-page>* {
    min-width: 0;
    max-width: 100%;
}

.server-subheader-metric {
    margin-bottom: 0;
    border: 1px solid #d8e2eb;
    border-radius: 0.52rem;
    background: linear-gradient(165deg, #f8fbff 0%, #f1f6fb 100%);
    color: #2f3d4d;
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.1;
    padding: 0.16rem 0.44rem;
    min-height: 1.44rem;
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
    white-space: nowrap;
}

.server-detail-page.game-accent .server-subheader-metric {
    border-color: rgba(var(--game-accent-rgb), 0.32);
}

.server-subheader-metric strong {
    margin: 0;
    display: inline-block;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5f7589;
    line-height: 1;
    font-weight: 700;
}

.server-subheader-metric--status-online {
    border-color: rgba(27, 161, 109, 0.3);
    background: linear-gradient(165deg, rgba(27, 161, 109, 0.14) 0%, rgba(27, 161, 109, 0.08) 100%);
    color: #0d6b47;
}

.server-subheader-metric--status-online strong {
    color: #0d6b47;
}

.server-subheader-metric--status-offline {
    border-color: rgba(189, 62, 43, 0.3);
    background: linear-gradient(165deg, rgba(189, 62, 43, 0.14) 0%, rgba(189, 62, 43, 0.08) 100%);
    color: #9d2d1b;
}

.server-subheader-metric--status-offline strong {
    color: #9d2d1b;
}

.server-detail-faq-ad {
    margin-top: var(--space-1);
    margin-bottom: var(--space-2);
}

.vote-page-banner-ad {
    margin-top: 0;
    margin-bottom: var(--space-2);
}

.server-detail-shell {
    display: grid;
    grid-template-columns: minmax(235px, 280px) minmax(0, 1fr);
    gap: var(--server-detail-gap);
    align-items: start;
    min-width: 0;
    max-width: 100%;
}

.server-detail-aside {
    position: static;
    align-self: start;
    border-color: #d7e2ec;
    background: linear-gradient(162deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: var(--shadow-sm);
    min-width: 0;
    max-width: 100%;
}

.server-detail-main {
    border-color: #d6e1ec;
    background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: var(--shadow-sm);
    overflow: visible;
    display: grid;
    gap: 0;
    min-width: 0;
    max-width: 100%;
}

.server-detail-aside .card-body {
    padding: var(--server-detail-panel-pad-tight) var(--server-detail-panel-pad-tight) calc(var(--server-detail-panel-pad-tight) + 0.22rem);
}

.server-detail-main:hover,
.server-detail-aside:hover {
    transform: none;
}

.server-detail-aside .state-message {
    margin-bottom: 0.52rem;
}

.server-detail-aside .state-message:last-of-type {
    margin-bottom: 0.62rem;
}

.server-ip-copy-block {
    display: grid;
    gap: 0.45rem;
}

.server-ip-copy-block--inline {
    display: block;
    min-width: 0;
    margin-bottom: 0;
}

.server-ip-copy-box {
    appearance: none;
    width: 100%;
    border: 1px solid #cfdce9;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #f8fbff 0%, #eef5fc 100%);
    color: var(--color-text-primary);
    text-align: left;
    padding: 0.62rem 0.78rem;
    display: grid;
    gap: 0.15rem;
    cursor: pointer;
    transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease, background 140ms ease;
}

.server-ip-copy-box:hover {
    border-color: #9ab4ce;
    box-shadow: 0 5px 14px rgba(43, 61, 81, 0.12);
    background: linear-gradient(160deg, #f5f9ff 0%, #e9f2fc 100%);
}

.server-ip-copy-box:focus-visible {
    outline: 2px solid #8fb4db;
    outline-offset: 2px;
}

.server-ip-copy-box:active {
    transform: translateY(1px);
}

.server-ip-copy-box.is-copying {
    border-color: #9ab4ce;
}

.server-ip-copy-box.is-copied {
    border-color: #83c6a5;
    background: linear-gradient(160deg, #edf8f1 0%, #e3f2e9 100%);
}

.server-ip-copy-box.is-failed {
    border-color: #e0a79b;
    background: linear-gradient(160deg, #fff5f2 0%, #ffece7 100%);
}

.server-ip-copy-box__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.server-ip-copy-box__value {
    font-family: "Consolas", "SFMono-Regular", "Menlo", monospace;
    font-size: 0.98rem;
    line-height: 1.3;
    word-break: break-all;
    color: #1e2d3d;
    font-weight: 700;
}

.server-ip-copy-box__hint {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    color: #4d5f73;
    font-size: 0.78rem;
    margin-top: 0.12rem;
}

.server-ip-copy-box--inline {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    min-width: 0;
    max-width: 100%;
    gap: 0.38rem;
    white-space: nowrap;
}

.server-ip-copy-box--inline .server-ip-copy-box__value {
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
    word-break: normal;
}

.server-ip-copy-box--inline .server-ip-copy-box__hint {
    margin-top: 0;
    white-space: nowrap;
    font-size: 0.68rem;
}

.server-copy-feedback {
    margin: 0;
    padding: 0.45rem 0.62rem;
    font-size: 0.82rem;
    line-height: 1.4;
}

.ip-copy-popup {
    position: absolute;
    z-index: 1200;
    width: min(24rem, calc(100vw - 1.5rem));
    border: 1px solid #cfd9e3;
    border-radius: var(--radius-md);
    background: linear-gradient(165deg, #f8fbff 0%, #eef4fa 100%);
    box-shadow: 0 16px 30px rgba(31, 41, 51, 0.18);
    padding: 0.7rem;
}

.ip-copy-popup__body {
    display: grid;
    gap: 0.58rem;
}

.ip-copy-popup__message {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #2f3d4d;
    font-weight: 600;
}

.ip-copy-popup__title,
.ip-copy-popup__subtext,
.ip-copy-popup__microtext {
    display: block;
}

.ip-copy-popup__title {
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.22;
    color: #223548;
}

.ip-copy-popup__subtext {
    margin-top: 0.22rem;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.4;
    color: #304458;
}

.ip-copy-popup__subtext strong {
    font-weight: 700;
}

.ip-copy-popup__microtext {
    margin-top: 0.18rem;
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.35;
    color: #5b6d80;
}

.ip-copy-popup__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.ip-copy-popup__action {
    min-height: 2.05rem;
    padding: 0.34rem 0.7rem;
    font-size: 0.82rem;
}

.ip-copy-popup--guest .ip-copy-popup__actions {
    gap: 0.44rem;
}

.ip-copy-popup--guest [data-copy-popup-register] {
    font-weight: 700;
}

.ip-copy-popup--guest [data-copy-popup-share] {
    opacity: 0.9;
}

/* `.btn` sets display inline-flex, so enforce hidden state for auth CTAs here. */
.ip-copy-popup__action[hidden] {
    display: none !important;
}

.credit-emphasis {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-pill);
    padding: 0.06rem 0.5rem;
    margin: 0 0.08rem;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.credit-emphasis--reward {
    color: #104530;
    border: 1px solid #90c9a7;
    background: linear-gradient(165deg, #eaf8ef 0%, #dff1e7 100%);
    box-shadow: 0 0 0 0 rgba(67, 158, 104, 0.34);
    animation: credit-reward-pulse 1.4s ease-out 1;
}

.credit-emphasis--auth {
    color: #7c1010;
    border: 1px solid #e18f8f;
    background: linear-gradient(165deg, #ffe8e8 0%, #ffdede 100%);
    box-shadow: 0 0 0 0 rgba(185, 42, 42, 0.42);
    animation: credit-auth-alert 1s ease-out 1;
}

.server-tabs .card-body {
    padding: 0.42rem var(--server-detail-panel-pad) 0.4rem;
    border-bottom: 1px solid #dce6ef;
    background: linear-gradient(170deg, #fafcff 0%, #f2f7fc 100%);
}

.server-tabs {
    position: static;
    top: auto;
    z-index: auto;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    border-bottom: 1px solid rgba(159, 178, 197, 0.62);
    background: rgba(250, 252, 255, 0.92);
    box-shadow: none;
    backdrop-filter: none;
}

.server-tabs__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.24rem;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.02rem;
    min-width: 0;
    max-width: 100%;
}

.server-tab-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    background: transparent;
    color: #2f3d4d;
    font-weight: 600;
    font-size: 0.84rem;
    padding: 0.32rem 0.68rem;
    min-height: 1.92rem;
    line-height: 1.1;
    transition: border-color var(--motion-base) var(--motion-ease), background-color var(--motion-base) var(--motion-ease), color var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease);
    max-width: 100%;
    white-space: nowrap;
}

.server-tab-trigger:hover {
    border-color: #d3deea;
    background: #eef4fa;
}

.server-tab-trigger:focus-visible {
    outline: none;
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 3px rgba(238, 168, 73, 0.22);
}

.server-tab-trigger[aria-selected='true'] {
    border-color: #d6e2ee;
    background: #edf4fb;
    color: #1f2f40;
    box-shadow: inset 0 -1px 0 #f46b45;
}

.server-tab-panel .card-header {
    background: transparent;
    border-bottom: 1px solid #e0e9f2;
    padding: 0.6rem var(--server-detail-panel-pad);
}

.server-tab-panel {
    border-top: 1px solid #e4edf6;
}

.server-tab-panel:first-of-type {
    border-top: 0;
}

.server-tab-panel>.card-body {
    padding: var(--server-detail-panel-pad);
}

.server-detail-announcement {
    margin-bottom: 0;
}

.server-detail-main[data-detail-tabs].is-tabs-enhanced .server-tab-panel[hidden] {
    display: none;
}

.server-detail-main[data-detail-tabs].is-tabs-enhanced .server-tab-panel.is-entering {
    animation: server-tab-panel-in 220ms var(--motion-ease) both;
}

.server-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
    margin: 0;
}

.server-detail-meta-grid div {
    margin-bottom: 0;
}

.server-detail-meta-grid dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-1);
}

.server-detail-meta-grid dd {
    margin: 0;
    color: var(--color-text-primary);
}

.server-info-section {
    display: grid;
    gap: var(--space-1);
    max-width: 100%;
    min-width: 0;
}

.server-info-layout {
    display: grid;
    gap: var(--space-3);
    max-width: 100%;
    min-width: 0;
}

.server-info-layout.has-banner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 468px);
    align-items: start;
}

.server-info-layout__main,
.server-info-layout__media {
    min-width: 0;
}

.server-info-layout__main {
    display: grid;
    gap: var(--space-3);
}

.server-info-layout__media {
    justify-self: end;
    width: min(100%, 468px);
}

.server-info-unified-card {
    display: grid;
    gap: 0;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dfe8f2;
    border-radius: var(--radius-sm);
    background: linear-gradient(165deg, #fafdff 0%, #f3f8fd 100%);
}

.server-info-hero-cta {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(14rem, 1fr);
    gap: var(--space-3);
    align-items: stretch;
    padding: clamp(0.78rem, 1.8vw, 1rem);
    border-bottom: 1px solid #dfe8f2;
}

.server-info-hero-cta--no-banner {
    grid-template-columns: minmax(0, 1fr);
}

.server-info-hero-cta .server-info-section--banner {
    min-width: 0;
    height: 100%;
}

.server-info-banner-stack {
    display: grid;
    align-content: start;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.server-info-hero-cta .server-info-banner-card--inline {
    width: 100%;
    align-content: center;
}

.server-info-banner-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.server-info-banner-copy .server-ip-copy-block {
    gap: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.server-info-banner-copy .server-ip-copy-box,
.server-info-banner-copy .server-ip-copy-box--inline {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.server-info-banner-copy .server-ip-copy-box {
    min-height: 2.3rem;
    border-radius: var(--radius-sm);
    border-color: #c8d5e2;
    background: #f7f9fc;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
    padding: 0.42rem 0.52rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    overflow: hidden;
}

.server-info-banner-copy .server-ip-copy-box:hover,
.server-info-banner-copy .server-ip-copy-box:focus-visible {
    border-color: #9fb3c7;
    background: #f2f6fb;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
}

.server-info-banner-copy .server-ip-copy-box__label {
    display: none;
}

.server-info-banner-copy .server-ip-copy-box__value {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}

.server-info-banner-copy .server-ip-copy-box__hint {
    flex: 0 0 auto;
    min-width: 0;
    margin-top: 0;
    white-space: nowrap;
}

.server-info-banner-card {
    border: 1px solid #d9e4ef;
    border-radius: var(--radius-sm);
    background: linear-gradient(165deg, #fbfdff 0%, #f3f8fd 100%);
    padding: 0.55rem;
    display: grid;
    gap: 0.4rem;
}

.server-info-banner-card--inline {
    width: min(100%, 468px);
    padding: 0.42rem;
}

.server-info-banner-card__label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #5b7085;
}

.server-info-banner-card__meta {
    margin: 0;
    font-size: 0.76rem;
    color: #61788f;
}

.server-info-banner-card__image {
    display: block;
    width: 100%;
    height: auto;
}

.server-info-banner-card--inline .server-info-banner-card__image {
    aspect-ratio: 468 / 60;
    object-fit: fill;
}

.server-info-vote-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
    border: 1px solid #d9e4ef;
    border-radius: var(--radius-sm);
    background: linear-gradient(165deg, #fbfdff 0%, #f3f8fd 100%);
    padding: clamp(0.95rem, 2vw, 1.15rem);
    text-align: center;
}

.server-info-vote-card__copy {
    display: grid;
    justify-items: center;
    gap: 0.32rem;
    width: 100%;
    min-width: 0;
}

.server-info-vote-card__copy h3 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 1rem;
    line-height: 1.25;
}

.server-info-vote-card__copy p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.84rem;
    line-height: 1.4;
}

.server-info-vote-card__button {
    width: 100%;
    min-height: 2.7rem;
    box-sizing: border-box;
}

.server-info-section+.server-info-section {
    margin-top: 0.62rem;
}

.server-info-section__title {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5a6f84;
}

.server-info-section__heading {
    display: grid;
    gap: 0.22rem;
}

.server-info-section__heading p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.server-detail-meta-grid--taxonomy>div:first-child {
    grid-column: 1 / -1;
}

.server-detail-meta-grid dd .ui-inline {
    margin-right: 0.42rem;
    margin-bottom: 0.3rem;
}

.server-info-section--narrative {
    border: 1px solid #dfe8f2;
    border-radius: var(--radius-sm);
    padding: 0.58rem 0.7rem;
    background: linear-gradient(165deg, #fafdff 0%, #f3f8fd 100%);
}

.server-info-section--about {
    gap: var(--space-3);
    padding: clamp(0.85rem, 2vw, 1.05rem);
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.server-about-description {
    min-width: 0;
    width: min(100%, 62rem);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.server-about-description *,
.server-about-readmore {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.server-about-description .server-detail-description {
    margin: 0;
}

.server-about-readmore {
    margin-top: var(--space-2);
}

.server-about-readmore summary,
.server-about-readmore__toggle {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 2rem;
    border: 1px solid #d6e1ec;
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: #315c8b;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.1;
    padding: 0.42rem 0.72rem;
}

.server-about-readmore[open] summary {
    margin-bottom: var(--space-2);
}

.server-about-owner-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    border: 1px dashed #cfdae6;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.62);
    padding: 0.72rem;
}

.server-about-owner-prompt p {
    margin: 0;
    color: #43586d;
    font-size: 0.92rem;
    line-height: 1.42;
}

.server-about-taxonomy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
}

.server-about-taxonomy__group {
    min-width: 0;
    border: 1px solid #dbe6f1;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.58);
    padding: 0.68rem;
}

.server-about-taxonomy__group h4 {
    margin: 0 0 0.45rem;
    color: #5a6f84;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.15;
    text-transform: uppercase;
}

.server-info-section--technical {
    border-left: 3px solid #d5e0ec;
    padding-left: 0.62rem;
}

.server-info-section--media {
    gap: 0.42rem;
}

.server-media-embed {
    border: 1px solid #dfe8f2;
    border-radius: var(--radius-sm);
    background: linear-gradient(165deg, #fafdff 0%, #f2f7fc 100%);
    padding: 0.44rem;
    overflow: hidden;
}

.server-trailer-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid #dfe8f2;
    border-radius: var(--radius-sm);
    background: #101d2b;
    overflow: hidden;
}

.server-trailer-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.server-trailer-fallback {
    display: grid;
    justify-items: start;
    gap: var(--space-2);
    border: 1px solid #dfe8f2;
    border-radius: var(--radius-sm);
    background: linear-gradient(165deg, #fafdff 0%, #f2f7fc 100%);
    padding: var(--space-3);
}

.server-trailer-fallback p {
    margin: 0;
    color: var(--color-text-muted);
}

.server-detail-description {
    max-width: 100%;
    margin-bottom: var(--space-1);
    line-height: 1.65;
    color: #33485d;
    font-size: 1rem;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.server-detail-note {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.server-detail-muted {
    color: var(--color-text-muted);
}

.server-detail-meta-grid .status-badge {
    font-size: 0.7rem;
    padding: 0.14rem 0.58rem;
}

.server-taxonomy-chips {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    max-width: 100%;
}

.server-taxonomy-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    border: 1px solid #d2deea;
    background: #f3f7fc;
    color: #2f3d4d;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.1;
    padding: 0.28rem 0.62rem;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.server-taxonomy-chip:hover {
    border-color: #bdccdc;
    background: #ebf2f9;
}

.server-taxonomy-empty {
    color: var(--color-text-muted);
    font-size: 0.86rem;
}

.server-taxonomy-more {
    display: inline-flex;
    align-items: center;
}

.server-taxonomy-more>summary {
    list-style: none;
}

.server-taxonomy-more>summary::-webkit-details-marker {
    display: none;
}

.server-taxonomy-chip--more {
    cursor: pointer;
}

.server-taxonomy-more__list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-left: 0.4rem;
}

@media (max-width: 1100px) {
    .server-info-hero-cta {
        grid-template-columns: minmax(0, 2.4fr) minmax(12.5rem, 1fr);
        gap: var(--space-2);
    }

    .server-info-vote-card {
        padding: 0.7rem;
    }
}

.server-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-2);
    align-items: stretch;
    grid-auto-rows: minmax(7.1rem, auto);
}

.server-stat-grid--summary {
    margin-bottom: var(--space-2);
}

.server-stat-grid--supporting {
    margin-top: var(--space-2);
}

.server-stat-card {
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
    margin-bottom: 0;
    border: 1px solid #d4deea;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #f9fbfe 0%, #edf3f9 100%);
    padding: 0.78rem;
    box-shadow: var(--shadow-sm);
    min-height: 7.1rem;
}

.server-stat-card h3 {
    margin: 0;
    min-height: 1.9rem;
    font-size: 0.76rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.server-stat-card__label {
    margin: 0;
    min-height: 1.9rem;
    font-size: 0.76rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 700;
}

.server-stat-card__value {
    align-self: end;
    margin: 0;
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-primary-dark);
    overflow-wrap: anywhere;
}

.server-stat-card__meta {
    margin-top: var(--space-1);
    margin-bottom: 0;
    font-size: 0.84rem;
    color: var(--color-text-muted);
}

.server-chart-card {
    border: 1px solid #d4deea;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #ffffff 0%, #f5f9fd 100%);
    padding: var(--space-2);
    box-shadow: var(--shadow-md);
}

.server-chart-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.server-chart-card__header h3 {
    margin-bottom: 0;
    font-size: 0.98rem;
}

.server-chart-card__header p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.84rem;
}

.server-trend-chart svg {
    width: 100%;
    height: 236px;
    display: block;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #f6f9fd 0%, #edf3f9 100%);
}

.server-trend-chart__axis {
    stroke: #cfd9e3;
    stroke-width: 1;
}

.server-trend-chart__area {
    fill: url(#serverTrendFill);
}

.server-trend-chart__area--vote {
    fill: url(#serverVoteTrendFill);
}

.server-trend-chart__line {
    fill: none;
    stroke: #f46b45;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.server-trend-chart__line--vote {
    stroke: #315c8b;
}

.server-trend-chart__point {
    fill: #ffffff;
    stroke: #f46b45;
    stroke-width: 3;
}

.server-trend-chart__point--vote {
    stroke: #315c8b;
}

.server-trend-chart__labels {
    margin-top: var(--space-2);
    display: flex;
    justify-content: space-between;
    gap: var(--space-2);
    color: var(--color-text-muted);
    font-size: 0.78rem;
}

.server-history-chart-card {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-3);
}

.server-history-chart-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    margin-bottom: 0;
    text-align: left;
}

.server-history-chart-card__header h3 {
    margin: 0;
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-weight: 500;
    letter-spacing: 0;
}

.server-history-chart__controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.server-history-chart {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.server-history-chart__svg {
    display: block;
    width: 100%;
    height: clamp(260px, 38vw, 360px);
    border: 2px solid #5a6471;
    border-radius: 0;
    background: #f8fafc;
    overflow: hidden;
    touch-action: none;
}

.server-history-chart__hover.is-hidden,
.server-history-chart__tooltip[hidden],
.server-history-chart__empty[hidden],
.server-history-chart__count[hidden],
.server-history-chart__legend[hidden],
.server-history-chart__note[hidden] {
    display: none !important;
}

.server-history-chart__grid line {
    stroke: #d8dee6;
    stroke-width: 1;
}

.server-history-chart__axis-labels text {
    fill: #53606d;
    font-size: 0.72rem;
}

.server-history-chart__area {
    fill: rgba(91, 111, 150, 0.12);
}

.server-history-chart__line {
    fill: none;
    stroke: #5c6f97;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.server-history-chart__line--comparison {
    stroke: #aeb7c1;
    stroke-width: 2.5;
    stroke-dasharray: 7 6;
    opacity: 0.78;
    pointer-events: none;
}

.server-history-chart__point {
    fill: #5c6f97;
    stroke: #ffffff;
    stroke-width: 2;
    cursor: pointer;
    transition: r 0.14s ease, fill 0.14s ease, stroke-width 0.14s ease;
}

.server-history-chart__point:hover,
.server-history-chart__point:focus,
.server-history-chart__point.is-active {
    fill: #e6763f;
    stroke-width: 3;
}

.server-history-chart__hover-line {
    stroke: #6f7783;
    stroke-width: 1.5;
}

.server-history-chart__hover-point {
    fill: #5c6f97;
    stroke: #ffffff;
    stroke-width: 2;
}

.server-history-chart__tooltip {
    position: absolute;
    z-index: 2;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 0.75rem;
    row-gap: 0.14rem;
    min-width: 11rem;
    border-radius: 0.22rem;
    background: #2f3b48;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
    padding: 0.48rem 0.62rem;
    pointer-events: none;
    transform: translate(-50%, calc(-100% - 0.55rem));
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.server-history-chart__tooltip span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 500;
}

.server-history-chart__tooltip strong {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: right;
}

.server-history-chart__empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    padding: var(--space-3);
    color: var(--color-text-muted);
    text-align: center;
}

.server-history-chart__count,
.server-history-chart__note {
    margin: 0.45rem 0 0;
    color: var(--color-text-muted);
    font-size: 0.84rem;
    line-height: 1.35;
    text-align: center;
}

.server-history-chart__count {
    font-weight: 600;
}

.server-history-chart__legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 1rem;
    margin: 0.55rem 0 0;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.server-history-chart__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.server-history-chart__legend-swatch {
    position: relative;
    display: inline-block;
    width: 2.2rem;
    height: 0.7rem;
}

.server-history-chart__legend-swatch::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid #5c6f97;
    transform: translateY(-50%);
}

.server-history-chart__legend-swatch::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #5c6f97;
    transform: translate(-50%, -50%);
}

.server-history-chart__legend-swatch--comparison::before {
    border-top-color: #aeb7c1;
    border-top-style: dashed;
}

.server-history-chart__legend-swatch--comparison::after {
    background: #aeb7c1;
}

.server-history-chart__debug {
    margin: 0;
    border: 1px solid #3e5368;
    background: #101d2b;
    color: #d9e6f2;
    font-size: 0.78rem;
    line-height: 1.35;
    overflow: auto;
    padding: 0.65rem;
}

.server-history-chart__select-wrap {
    display: block;
    margin: 0;
}

.server-history-chart__select {
    width: auto;
    min-width: 8.2rem;
    min-height: 2.35rem;
    border: 1px solid #9ba9bb;
    border-radius: 0.24rem;
    background-color: #f2f5f9;
    color: #1f2933;
    font-size: 0.9rem;
    line-height: 1.2;
    padding: 0.46rem 0.66rem;
}

.server-history-chart__select:focus {
    border-color: #6f83ad;
    box-shadow: 0 0 0 3px rgba(92, 111, 151, 0.18);
    outline: 0;
}

@media (max-width: 620px) {
    .server-history-chart-card__header {
        align-items: stretch;
        flex-direction: column;
    }

    .server-history-chart__controls {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
    }

    .server-history-chart__select {
        width: 100%;
        min-width: 0;
    }

    .server-history-chart__tooltip {
        min-width: 10rem;
        max-width: calc(100vw - 2rem);
    }
}

.server-chart-empty {
    border: 1px dashed #d5dfeb;
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8fd 100%);
}

.server-chart-empty--info {
    margin-top: var(--space-2);
}

.server-chart-empty p {
    margin-bottom: var(--space-2);
}

.server-chart-empty p:last-child {
    margin-bottom: 0;
}

.server-vote-panel__lead {
    margin-bottom: var(--space-2);
}

.server-vote-panel__meta {
    margin-bottom: var(--space-3);
    color: var(--color-text-muted);
}

.server-banner-tab__preview {
    display: block;
    max-width: 100%;
    width: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg-soft);
}

.server-banner-tab__copy-grid {
    display: grid;
    gap: var(--space-2);
}

.server-banner-tab__copy-field {
    display: grid;
    gap: 0.35rem;
}

.server-banner-tab__copy-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
}

.server-banner-tab__copy-row input,
.server-banner-tab__copy-row textarea {
    flex: 1 1 320px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.84rem;
}

.server-banner-tab__copy-row--stacked textarea {
    min-height: 4.8rem;
}

.server-faq-section {
    border-color: #d7e2ec;
    overflow: hidden;
}

.server-faq-section>.card-header {
    display: flex;
    align-items: center;
    min-height: 3.05rem;
    margin: 0;
    padding: 0.78rem var(--space-4);
    border-bottom: 1px solid rgba(93, 121, 149, 0.18);
    line-height: 1.25;
}

.server-faq-section>.card-body {
    padding-top: var(--space-3);
}

.server-faq-section__intro {
    margin: 0 0 var(--space-3);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.server-faq-list {
    display: grid;
    gap: var(--space-2);
}

.related-servers {
    border-color: #d7e2ec;
}

.related-servers__body {
    display: grid;
    gap: var(--space-3);
}

.related-servers__intro,
.related-servers__back {
    margin-bottom: 0;
}

.related-servers__intro {
    color: var(--color-text-muted);
}

.faq-accordion {
    display: grid;
    gap: clamp(0.75rem, 1.4vw, 1rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-accordion__item {
    border: 1px solid rgba(91, 116, 143, 0.62);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(31, 49, 68, 0.82) 0%, rgba(20, 35, 52, 0.84) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 28px rgba(5, 12, 22, 0.2);
    overflow: hidden;
    backdrop-filter: blur(3px);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-accordion__item:hover {
    border-color: rgba(243, 180, 95, 0.52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 34px rgba(5, 12, 22, 0.28), 0 0 20px rgba(243, 180, 95, 0.12);
    transform: translateY(-2px);
}

.faq-accordion__item[open] {
    border-color: rgba(243, 180, 95, 0.78);
    box-shadow: inset 3px 0 0 rgba(245, 123, 87, 0.78), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 36px rgba(5, 12, 22, 0.3);
}

.faq-accordion__item[open] .faq-accordion__icon {
    border-color: rgba(243, 180, 95, 0.68);
    background: linear-gradient(155deg, rgba(66, 48, 35, 0.92) 0%, rgba(41, 46, 56, 0.95) 100%);
    color: #f7c36d;
}

.faq-accordion__summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) 1.25rem;
    align-items: center;
    gap: clamp(0.85rem, 1.8vw, 1.25rem);
    width: 100%;
    min-height: 4.1rem;
    margin: 0;
    padding: clamp(0.85rem, 1.8vw, 1.15rem) clamp(1rem, 2vw, 1.35rem);
    color: #f3f7fb;
    font-weight: 700;
    box-sizing: border-box;
}

.faq-accordion__summary::-webkit-details-marker {
    display: none;
}

.faq-accordion__summary:focus-visible {
    outline: 2px solid rgba(243, 180, 95, 0.72);
    outline-offset: 3px;
}

.faq-accordion__icon {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(121, 148, 178, 0.5);
    border-radius: var(--radius-sm);
    background: linear-gradient(155deg, rgba(44, 61, 78, 0.74) 0%, rgba(24, 39, 57, 0.86) 100%);
    color: #f3b45f;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    box-sizing: border-box;
}

.faq-accordion__icon .ui-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.faq-accordion__question {
    min-width: 0;
    margin: 0;
    color: #f3f7fb;
    font-size: clamp(1.04rem, 1.7vw, 1.28rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.01em;
    overflow-wrap: anywhere;
}

.faq-accordion__caret {
    position: relative;
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    margin-right: 0;
    border: 0;
    color: #eaf1f8;
    transition: transform 180ms ease, color 180ms ease;
}

.faq-accordion__caret::before {
    content: '';
    position: absolute;
    inset: 0.18rem;
    border-right: 0.16rem solid currentColor;
    border-bottom: 0.16rem solid currentColor;
    transform: rotate(45deg);
}

.faq-accordion__item[open] .faq-accordion__caret {
    color: #f3b45f;
    transform: rotate(180deg);
}

.faq-accordion__content {
    margin: 0 clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.25rem) calc(clamp(1rem, 2vw, 1.35rem) + 4.25rem);
    padding-top: clamp(0.85rem, 1.6vw, 1rem);
    border-top: 1px solid rgba(121, 148, 178, 0.28);
}

.faq-accordion__answer {
    max-width: 56rem;
    margin: 0;
    color: #b7c7d6;
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    line-height: 1.65;
}

@supports selector(::details-content) {
    .faq-accordion__item::details-content {
        block-size: 0;
        overflow: hidden;
        transition: block-size 220ms ease, content-visibility 220ms ease allow-discrete;
    }

    .faq-accordion__item[open]::details-content {
        block-size: auto;
    }
}

@media (max-width: 760px) {
    .faq-accordion__summary {
        grid-template-columns: 2.65rem minmax(0, 1fr) 1rem;
        min-height: 3.85rem;
        padding: 0.8rem 0.85rem;
        gap: 0.75rem;
    }

    .faq-accordion__icon {
        width: 2.65rem;
        height: 2.65rem;
    }

    .faq-accordion__icon .ui-icon {
        width: 1.18rem;
        height: 1.18rem;
    }

    .faq-accordion__content {
        margin: 0 0.85rem 0.95rem calc(0.85rem + 3.4rem);
    }
}

.server-faq-item {
    border: 1px solid #d8e2eb;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #fbfdff 0%, #f3f8fd 100%);
    padding: var(--space-2);
    margin-bottom: 0;
    box-shadow: var(--shadow-sm);
}

.server-faq-item__question {
    margin-bottom: var(--space-1);
    font-size: 0.98rem;
    line-height: 1.35;
    color: var(--color-primary-dark);
}

.server-faq-item__answer {
    margin-bottom: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 78ch;
}

@media (max-width: 920px) {
    .vote-page-layout {
        --server-subheader-sticky-height: 3.9rem;
    }

    .server-detail-page {
        --server-subheader-sticky-height: 3.9rem;
    }

    .page-subheader--server-sticky .card-body.page-subheader__body {
        grid-template-columns: auto minmax(0, 1fr) max-content;
        align-items: center;
    }

    .page-subheader--server-sticky .page-subheader__aside {
        grid-column: auto;
        justify-items: end;
        width: auto;
        max-width: 54vw;
        flex-shrink: 0;
    }

    .page-subheader--server-sticky .page-subheader__actions--aside {
        justify-content: flex-end;
        margin-top: 0;
        flex-wrap: nowrap;
        gap: 0.18rem;
    }

    .page-subheader--server-sticky .page-subheader__breadcrumbs {
        display: none;
    }

    .page-subheader--server-sticky .server-subheader-breadcrumb-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .page-subheader--server-sticky .server-subheader-top-links {
        gap: 0.32rem;
        flex-wrap: wrap;
    }

    .page-subheader--server-sticky .server-subheader-random-form,
    .page-subheader--server-sticky .server-subheader-random-link,
    .page-subheader--server-sticky .server-subheader-metric--votes {
        display: none;
    }

    .page-subheader--server-sticky .page-subheader__actions--aside .server-ip-copy-block {
        order: 2;
        width: auto;
        min-width: 0;
        max-width: min(34vw, 9rem);
        flex: 0 1 auto;
    }

    .page-subheader--server-sticky .page-subheader__actions--aside .server-ip-copy-box--inline {
        width: auto;
        max-width: 100%;
        white-space: nowrap;
    }

    .page-subheader--server-sticky .page-subheader__actions--aside .server-ip-copy-box--inline .server-ip-copy-box__value {
        max-width: min(21vw, 5.8rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-break: normal;
    }

    .page-subheader--server-sticky .server-subheader-side-metrics {
        order: 1;
    }

    .page-subheader--server-sticky .server-subheader-side-metrics {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        max-width: min(38vw, 13rem);
        overflow: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .page-subheader--server-sticky .server-subheader-side-metrics::-webkit-scrollbar {
        display: none;
    }

    .page-subheader--server-context .server-subheader-side-metrics {
        justify-content: flex-end;
    }

    .page-subheader--server-sticky .server-subheader-description {
        max-width: min(100%, 36ch);
    }

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

    .server-info-hero-cta {
        grid-template-columns: 1fr;
    }

    .server-info-layout.has-banner {
        grid-template-columns: 1fr;
    }

    .server-info-layout__media {
        justify-self: stretch;
        width: 100%;
    }

    .server-about-owner-prompt {
        align-items: flex-start;
        flex-direction: column;
    }

    .server-about-taxonomy {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {
    .server-overview__status-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .server-overview__status-meta {
        justify-content: flex-start;
    }

    .server-overview__meta-list {
        grid-template-columns: 1fr;
    }

    .server-detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .server-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .server-chart-card__header {
        display: grid;
        justify-content: stretch;
    }

    .server-taxonomy-chip {
        font-size: 0.76rem;
        padding: 0.24rem 0.55rem;
    }
}

@media (max-width: 640px) {
    .page-subheader--server-sticky .server-subheader-description {
        max-width: min(100%, 26ch);
    }
}

@media (max-width: 520px) {
    .server-stat-grid {
        grid-template-columns: 1fr;
    }

}

@media (prefers-reduced-motion: reduce) {
    .faq-accordion__caret {
        transition: none;
    }
}

@keyframes server-tab-panel-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ui-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ui-icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
}

.ui-icon--sm {
    width: 0.95em;
    height: 0.95em;
}

.ui-icon--lg {
    width: 1.1em;
    height: 1.1em;
}

.game-accent {
    --game-accent: var(--color-accent-coral);
    --game-accent-rgb: 244, 107, 69;
}

.game-icon,
.game-logo {
    width: 2.2rem;
    height: 1.45rem;
    display: inline-block;
    border-radius: 0.48rem;
    border: 1px solid rgba(var(--game-accent-rgb), 0.24);
    background: linear-gradient(160deg, rgba(var(--game-accent-rgb), 0.13) 0%, rgba(var(--game-accent-rgb), 0.06) 100%);
    object-fit: contain;
    vertical-align: middle;
    flex: 0 0 auto;
    padding: 0.12rem 0.16rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    image-rendering: auto;
}

.game-icon--sm,
.game-logo--sm {
    width: 1.9rem;
    height: 1.2rem;
    border-radius: 0.42rem;
    padding: 0.1rem 0.14rem;
}

.game-icon--lg,
.game-logo--lg {
    width: 3.05rem;
    height: 2rem;
    border-radius: 0.6rem;
    padding: 0.16rem 0.2rem;
}

.game-icon--fallback,
.game-logo--fallback {
    border-color: var(--color-border);
    background: var(--color-bg-soft);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.homepage-game-card__visual>.game-logo,
.homepage-game-card__visual>.game-icon {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    object-fit: contain;
}

.server-subheader-logos {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.server-subheader-logos>img {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.45rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg-soft);
    object-fit: cover;
}

.server-subheader-icon {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: inherit;
    background: inherit;
    object-fit: cover;
}

.card:hover {
    border-color: #3a4d61;
}

.hero {
    background: linear-gradient(140deg, #162334 0%, #1b2a3d 100%);
}

.section-surface--base {
    border-color: #3a5168;
    background: linear-gradient(165deg, #1a2b3e 0%, #172839 100%);
}

.section-surface--elevated {
    border-color: #3d5670;
    background: linear-gradient(165deg, #1b2d40 0%, #17293b 100%);
}

.section-surface--cta {
    border-color: #816635;
    background: linear-gradient(155deg, #3f321a 0%, #4a3b1f 100%);
    box-shadow: 0 10px 20px rgba(7, 5, 2, 0.35);
}

.section-surface--plain {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.section-surface--band {
    border-color: #3f5670;
    background: linear-gradient(180deg, #1a2b3f 0%, #162739 100%);
}

.section-surface>.card-header {
    border-bottom-color: rgba(116, 144, 172, 0.22);
}

.homepage-hero__stats {
    border-color: #3b5166;
    background: linear-gradient(160deg, #19293b 0%, #172638 100%);
}

.homepage-section {
    border-color: #3a5168;
}

.homepage-section--base {
    background: linear-gradient(165deg, #1a2a3c 0%, #172638 100%);
}

.homepage-section--elevated {
    background: linear-gradient(165deg, #192a3d 0%, #152436 100%);
}

.homepage-section--cta {
    border-color: #816635;
    background: linear-gradient(155deg, #3d3019 0%, #4a3a1f 100%);
    box-shadow: 0 10px 20px rgba(7, 5, 2, 0.35);
}

.homepage-section--plain {
    border: 0;
    background: transparent;
}

.homepage-section--band {
    border-color: #3b5470;
    background: linear-gradient(180deg, #1c2e42 0%, #18293b 100%);
}

.homepage-section__kicker {
    color: #a8bdd1;
}

.homepage-hero__stats-title {
    color: #adc0d3;
}

.game-search__bar {
    border-color: #32465b;
    background: linear-gradient(165deg, #182738 0%, #142232 100%);
}

.game-search__bar:focus-within {
    border-color: #57718e;
}

.game-search input,
.game-search select {
    border-color: #3a5168;
    background: #101c2a;
    color: var(--color-text-primary);
}

.game-search input:hover,
.game-search select:hover {
    border-color: #5a7591;
    background: #132131;
}

.flash-stack .state-message__icon {
    background: rgba(23, 36, 52, 0.85);
    box-shadow: inset 0 0 0 1px rgba(145, 166, 190, 0.24);
}

.flash-stack .state-message__title {
    color: #d2deea;
}

.flash-stack .state-message__text {
    color: #dbe5f0;
}

.state-message--success {
    background: linear-gradient(165deg, #143427 0%, #173d2d 100%);
    border-color: #2c7f5b;
}

.state-message--error {
    background: linear-gradient(165deg, #3a1f23 0%, #452428 100%);
    border-color: #8b4a50;
}

.state-message--info,
.state-message--loading {
    background: linear-gradient(165deg, #17273a 0%, #152436 100%);
    border-color: #3b5268;
}

.state-message--warning,
.state-message--empty {
    background: linear-gradient(165deg, #3b2e1f 0%, #463523 100%);
    border-color: #8b6a44;
}

.state-message--reward {
    background: linear-gradient(165deg, #172b3c 0%, #1a3145 100%);
    border-color: #4f7093;
}

.promotion-status-badge--active {
    border-color: rgba(57, 195, 133, 0.44);
    color: #9de8c5;
    background: linear-gradient(165deg, rgba(27, 161, 109, 0.25) 0%, rgba(27, 161, 109, 0.18) 100%);
}

.promotion-status-badge--promoted {
    border-color: #a6802e;
    color: #f6dfaa;
    background: linear-gradient(150deg, #6f541b 0%, #9d7423 100%);
}

.btn-secondary {
    background: linear-gradient(160deg, #d8a14e 0%, #c68638 100%);
    border-color: #b7772d;
    color: #102033;
}

.btn-secondary:hover {
    background: linear-gradient(160deg, #e0ad60 0%, #cf9247 100%);
    border-color: #c08137;
    color: #102033;
    box-shadow: 0 6px 12px rgba(207, 146, 71, 0.28);
}

.tilt-plus-mark {
    border-color: #a6802e;
    color: #f6dfaa;
    background: linear-gradient(150deg, #6f541b 0%, #9d7423 100%);
}

.tilt-plus-audience-card {
    border-color: #3f5670;
    background: linear-gradient(165deg, #1a2b3f 0%, #17283a 100%);
}

.inline-link-row a {
    border-color: #3a5168;
    background: #1a2b3d;
    color: #d7e2ee;
}

.inline-link-row a:hover {
    border-color: #5d7894;
    background: #22364b;
}

.inline-link-row .server-list-intro__updates-link {
    border-color: #c08137;
    background: linear-gradient(160deg, #e0ad60 0%, #cf9247 100%);
    color: #101923;
    box-shadow: 0 8px 14px rgba(207, 146, 71, 0.24);
}

.inline-link-row .server-list-intro__updates-link:hover {
    border-color: #d19a4f;
    background: linear-gradient(160deg, #e8ba73 0%, #d9a056 100%);
    color: #101923;
}

.taxonomy-seo-block__body h3 {
    color: #dce8f3;
}

.taxonomy-seo-block__context-links {
    color: #a7bbcf;
}

.taxonomy-compact-nav__field label {
    color: #a8bdd1;
}

.taxonomy-compact-nav__field select {
    border-color: #3f5670;
    background: #152638;
    color: #dbe8f5;
}

.taxonomy-compact-nav__field select:hover {
    border-color: #5d7894;
}

.taxonomy-compact-nav__field select option {
    background: #152638;
    color: #dbe8f5;
}

.platform-stat-card {
    border-color: #3b5166;
    background: linear-gradient(160deg, #19293b 0%, #172638 100%);
}

.ad-banner-slot {
    border-color: #3a5168;
    background: linear-gradient(165deg, #1a2a3c 0%, #162536 100%);
}

.game-directory__search-icon {
    color: #8aa2ba;
}

.game-directory__search input {
    border-color: #3a5168;
    background: #132235;
    color: #e6eff8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.game-directory__search input::placeholder {
    color: #91a6ba;
}

.game-directory__search input:focus {
    border-color: #c08137;
    background: #17283a;
    box-shadow: 0 0 0 3px rgba(207, 146, 71, 0.18);
}

.homepage-game-card {
    border-color: #3a5168;
    background: linear-gradient(155deg, #182738 0%, #162536 100%);
}

.homepage-game-card h3 {
    color: #e6eff8;
}

.homepage-game-card__count {
    color: #bed1e4;
}

.homepage-game-card__meta {
    color: #a4b8cc;
}

.homepage-game-card__visual {
    border-color: rgba(var(--game-accent-rgb), 0.42);
    background: linear-gradient(160deg, rgba(var(--game-accent-rgb), 0.2) 0%, rgba(var(--game-accent-rgb), 0.1) 100%);
}

.homepage-game-card__actions .btn-secondary {
    border-color: #c58338;
    box-shadow: 0 8px 14px rgba(207, 146, 71, 0.24);
}

.homepage-game-card__visual::after {
    box-shadow: inset 0 0 0 1px rgba(175, 194, 214, 0.16);
}

.homepage-game-card--has-bg {
    border-color: rgba(var(--game-accent-rgb), 0.52);
    background: var(--game-card-bg-image);
    background-position: center;
    background-size: cover;
}

.homepage-game-card--has-bg h3,
.homepage-game-card--has-bg .homepage-game-card__count,
.homepage-game-card--has-bg .homepage-game-card__meta,
.homepage-game-card--has-bg .ui-inline {
    color: #ffffff;
}

.game-icon,
.game-logo {
    border-color: rgba(var(--game-accent-rgb), 0.36);
    background: linear-gradient(160deg, rgba(var(--game-accent-rgb), 0.18) 0%, rgba(var(--game-accent-rgb), 0.1) 100%);
    box-shadow: inset 0 0 0 1px rgba(168, 188, 210, 0.2);
}

.game-icon--fallback,
.game-logo--fallback {
    border-color: #435a72;
    background: #1a2a3b;
}

.homepage-entry-links a {
    border-color: #3a5168;
    background: #1a2b3d;
    color: #d7e2ee;
}

.homepage-entry-links a:hover {
    border-color: #607b97;
    background: #22364a;
}

.shop-item-card__label {
    border-color: #40566e;
    background: #1b2c3f;
    color: #e8f1fb;
}

.shop-item-card__benefits {
    color: #c4d4e4;
}

.shop-item-card__body-title {
    color: #e6eff8;
}

.shop-page__hero-card {
    border-color: #3a5168;
    background-color: #162536;
    background-image: url("/assets/images/components/credits-shop-bg.png");
}

.shop-page__hero-copy h1,
.shop-page__hero-copy p {
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.68);
}

.shop-tilt-plus-promo {
    border-color: #695936;
    background: linear-gradient(150deg, #292212 0%, #312819 100%);
    box-shadow: 0 8px 16px rgba(17, 12, 5, 0.24);
}

.shop-tilt-plus-promo--active {
    border-color: #3a5168;
    background: linear-gradient(155deg, #1b2c3f 0%, #18293a 100%);
    box-shadow: none;
}

.shop-tilt-plus-promo__eyebrow {
    color: #ebcb88;
}

.shop-tilt-plus-promo__body p {
    color: #d7cab1;
}

.shop-tilt-plus-promo--active .shop-tilt-plus-promo__body p {
    color: #a7bbcf;
}

.shop-page__balance {
    border-color: #3f5670;
    background: linear-gradient(165deg, #1a2b3e 0%, #172739 100%);
    color: #d8e3ef;
}

.shop-page__balance-label {
    color: #9fb2c6;
}

.shop-section--transfer .shop-section__header,
.shop-item-card__header {
    background: linear-gradient(165deg, #1b2c3f 0%, #182839 100%);
}

.shop-page__gift-feature {
    border-color: #7b6332;
    background:
        radial-gradient(circle at 10% 10%, rgba(235, 176, 83, 0.18), transparent 30%),
        linear-gradient(165deg, #1d2d3f 0%, #172739 100%);
}

.shop-page__recent-purchases::before {
    border-top-color: #3f5670;
}

.shop-page__account-sidebar {
    border-right-color: #3f5670;
}

.shop-payment-trust {
    border-color: #3f5670;
    background: rgba(23, 39, 57, 0.72);
    box-shadow: inset 0 1px 0 rgba(153, 183, 213, 0.08), 0 12px 26px rgba(5, 12, 22, 0.24);
}

.shop-payment-trust__copy p {
    color: #a9bbce;
}

.shop-payment-trust__copy strong {
    color: #e6eff8;
}

.shop-payment-trust__method {
    border-color: #40566e;
    background: #142336;
    color: #d8e5f1;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 18px rgba(5, 12, 22, 0.26);
}

.shop-credit-crate__badge,
.shop-credit-crate--popular .shop-credit-crate__badge,
.shop-credit-crate--value .shop-credit-crate__badge {
    border-color: #806637;
    background: #2a2314;
    color: #f6dfaa;
}

.shop-page__credit-crates-eyebrow,
.shop-credit-crate__price {
    width: fit-content;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: #f6dfaa;
}

.shop-page__credit-crates-eyebrow {
    display: inline-block;
    color: #f0c46f;
}

.shop-credit-crate__savings {
    border-color: #2f8c56;
    background: #153b28;
    color: #8ee0ad;
}

.shop-page__gift-content h2 {
    color: #e6eff8;
}

.shop-page__gift-content p {
    color: #a9bbce;
}

.shop-page__gift-visual {
    background: url("/assets/images/components/Gift_Icon.png") center / contain no-repeat;
    box-shadow: none;
}

.shop-sidebar-earn-card {
    border-color: #7b6332;
    background:
        radial-gradient(circle at 95% 0%, rgba(235, 176, 83, 0.16), transparent 42%),
        linear-gradient(165deg, #1b2c3f 0%, #172739 100%);
}

.shop-sidebar-earn-card__icon {
    border-color: #8e6f2f;
    background: linear-gradient(160deg, #f3b45f 0%, #cf8e35 100%);
    color: #172739;
    box-shadow: 0 5px 11px rgba(5, 12, 22, 0.22);
}

.shop-sidebar-earn-card__header h2 {
    color: #e6eff8;
}

.shop-sidebar-earn-card__eyebrow,
.shop-sidebar-earn-card__action a {
    color: #ebcb88;
}

.shop-sidebar-earn-card__copy {
    color: #a9bbce;
}

.shop-sidebar-earn-card__chips span {
    border-color: #40566e;
    background: rgba(20, 35, 54, 0.82);
    color: #c2d2e3;
}

.shop-sidebar-earn-card__action a:hover {
    color: #f3b45f;
}

.shop-credit-activity__header h2 {
    color: #e6eff8;
}

.shop-credit-activity__eyebrow {
    color: #ebcb88;
}

.shop-credit-activity__receipt {
    border-color: #3f5670;
    background: #172739;
}

.shop-credit-activity__row {
    border-top-color: #354b62;
}

.shop-credit-activity__row--head {
    background: #1b2c3f;
    color: #a9bbce;
}

.shop-credit-activity__amount--credit {
    color: #7ed59c;
}

.shop-credit-activity__amount--debit {
    color: #f0a39a;
}

.shop-page__gift-panel .shop-item-card {
    border-color: #3a5168;
    background: #172739;
}

.shop-page__gift-panel .shop-item-card__intent-panel {
    border-color: #405970;
    background: #132233;
}

.shop-page__gift-panel .shop-item-card__intent-panel label {
    color: #d7e4f2;
}

.shop-page__gift-panel .shop-item-card__flow-hint,
.shop-page__gift-panel .shop-item-card__hint {
    color: #a7b9cb;
}

.shop-page__gift-panel .shop-item-card__intent-panel input,
.shop-page__gift-panel .shop-item-card__intent-panel select {
    border-color: #3f5670;
    background: #101d2c;
    color: #e4edf7;
}

.shop-page__gift-panel .shop-item-card__intent-panel input::placeholder {
    color: #8ea3b8;
}

.shop-page__gift-panel .shop-item-card__intent-panel select option {
    background: #101d2c;
    color: #e4edf7;
}

.shop-page__gift-panel .shop-item-card__intent-panel input:hover,
.shop-page__gift-panel .shop-item-card__intent-panel select:hover {
    border-color: #5c7894;
    background: #132334;
}

.shop-page__gift-panel .shop-item-card__intent-panel input:focus,
.shop-page__gift-panel .shop-item-card__intent-panel select:focus {
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 3px rgba(243, 180, 95, 0.2);
}

.shop-page__gift-panel .shop-item-card__state--warning {
    border-color: #806637;
    background: #2a2314;
    color: #e9cb8d;
}

.shop-page__gift-panel .shop-item-card__intent-actions .btn:disabled {
    opacity: 0.7;
}

.shop-item-preview {
    border-color: #3f5670;
    background: #17283a;
}

.shop-item-preview__label {
    color: #a4b7ca;
}

.shop-item-preview__context {
    color: #9cb0c4;
}

.shop-preview-row {
    border-color: #40566e;
    background: #1b2c3f;
}

.shop-preview-row--premium-highlight {
    border-color: #8e6f2f;
    background: linear-gradient(165deg, #3a2f15 0%, #4a3918 100%);
}

.shop-preview-row__meta {
    color: #9fb2c6;
}

.page-subheader {
    border-color: #3f5670;
    background: linear-gradient(155deg, #1a2b3d 0%, #172739 100%);
}

.page-subheader__eyebrow {
    color: #9fb2c6;
}

.page-subheader__title {
    color: #e2ebf4;
}

.page-subheader__subtitle {
    color: #b5c6d7;
}

.vote-summary__chip {
    border-color: #435a73;
    background: linear-gradient(165deg, #1c2d40 0%, #18293b 100%);
    color: #dce7f2;
}

.vote-summary__chip strong {
    color: #eef4fb;
}

.vote-page-shell {
    border-color: #3f5670;
    background: linear-gradient(160deg, #192b3d 0%, #172739 100%);
}

.vote-zone--secondary {
    border-top-color: #3f5670;
}

.vote-zone__header h2 {
    color: #e6eef7;
}

.vote-activity-panel {
    border-color: #425a73;
    background: linear-gradient(160deg, #1b2c3f 0%, #17283a 100%);
    box-shadow: 0 8px 18px rgba(8, 14, 24, 0.34);
}

.vote-activity-panel__title {
    color: #eef5fc;
}

.vote-activity-panel__helper,
.vote-activity-panel__empty {
    color: #adc0d3;
}

.vote-activity-panel__toggle {
    border-color: #425a73;
    background: rgba(23, 39, 57, 0.72);
    color: #c4d4e4;
}

.vote-stats-collection-card {
    border-color: #455d77;
    background: linear-gradient(180deg, #1c2d40 0%, #18293b 100%);
    color: #e6eef7;
}

.vote-stats-collection-card ul {
    color: #b7c8da;
}

.vote-action-card {
    border-color: #4a6680;
    background: linear-gradient(135deg, #1f3348 0%, #1b2d41 52%, #17283a 100%);
    box-shadow: 0 18px 38px rgba(7, 12, 20, 0.38);
}

.vote-action-card__server-summary {
    border-bottom-color: #425a73;
}

.vote-action-card__server-icon {
    border-color: #506a84;
    background: #101d2b;
    box-shadow: 0 8px 18px rgba(7, 12, 20, 0.34);
}

.vote-action-card__server-name {
    color: #eef5fc;
}

.vote-action-card__server-name-context {
    color: #adc0d3;
}

.vote-action-card__badge {
    border-color: #3f5670;
    background: #1b2c3f;
    color: #d2deea;
}

.vote-action-card__copy-ip .server-ip-copy-box {
    box-shadow: 0 8px 18px rgba(7, 12, 20, 0.34);
}

.vote-action-card__eyebrow {
    color: #9fd0ff;
}

.vote-action-card__header h2 {
    color: #eef5fc;
}

.vote-action-card__status {
    color: #c6d5e5;
}

.vote-action-step {
    border-color: transparent;
    background: transparent;
}

.vote-action-step--vote {
    border-color: transparent;
    background: transparent;
}

.vote-action-step--reward {
    border-color: transparent;
    background: transparent;
}

.vote-action-step__body h3,
.vote-action-step__title {
    color: #eef5fc;
}

.vote-action-step__summary {
    color: #adc0d3;
}

.vote-readiness {
    border-color: #425a73;
    background: rgba(15, 27, 40, 0.5);
}

.vote-readiness__label {
    color: #eef5fc;
}

.vote-readiness__time {
    color: #adc0d3;
}

.vote-readiness__track {
    background: rgba(80, 103, 127, 0.42);
}

.vote-readiness--ready .vote-readiness__fill {
    background: linear-gradient(90deg, #34c979 0%, #93e5b7 100%);
}

.vote-readiness--waiting .vote-readiness__fill {
    background: linear-gradient(90deg, #f0a84f 0%, #7eb4e6 100%);
}

.vote-captcha-benefits {
    border-color: #425a73;
    background: rgba(23, 39, 57, 0.72);
}

.vote-captcha-benefits__icon {
    border-color: rgba(244, 107, 69, 0.42);
    background: rgba(60, 42, 37, 0.58);
    color: #ffb39c;
}

.vote-captcha-benefits h4,
.vote-captcha-benefits__title {
    color: #eef5fc;
}

.vote-captcha-benefits p {
    color: #adc0d3;
}

.vote-success-card {
    border-color: rgba(120, 214, 167, 0.34);
    background: linear-gradient(135deg, #1d3a2b 0%, #183024 54%, #14283a 100%);
    box-shadow: 0 18px 38px rgba(7, 12, 20, 0.42);
}

.vote-success-card__icon {
    background: #44a565;
    color: #07140d;
    box-shadow: 0 8px 18px rgba(68, 165, 101, 0.24);
}

.vote-success-card__eyebrow {
    color: #8fe1aa;
}

.vote-success-card__header h2 {
    color: #effaf2;
}

.vote-success-metric {
    border-color: rgba(120, 214, 167, 0.22);
    background: rgba(18, 37, 31, 0.78);
}

.vote-success-metric dt {
    color: #a9d6b8;
}

.vote-success-metric dd {
    color: #effaf2;
}

.vote-success-metric--earned {
    border-color: rgba(244, 107, 69, 0.4);
    background: rgba(58, 38, 31, 0.74);
}

.vote-success-metric--earned dd {
    color: #ffb39c;
}

.vote-account-benefits-card {
    border-color: #6f5a2f;
    background: linear-gradient(145deg, #372d18 0%, #2d2518 100%);
    box-shadow: 0 14px 30px rgba(7, 12, 20, 0.36);
}

.vote-account-benefits-card__eyebrow {
    color: #f4d489;
}

.vote-account-benefits-card__header h2 {
    color: #fff2cd;
}

.vote-account-benefits-list li {
    color: #f0dfb3;
}

.vote-account-benefits-list span {
    background: #54b977;
    color: #07140d;
}

.vote-context-card:not(.vote-context-card--has-bg) {
    border-color: #425a73;
    background: linear-gradient(160deg, #1b2c3f 0%, #17283a 100%);
    box-shadow: 0 8px 18px rgba(8, 14, 24, 0.34);
}

.vote-section-title {
    color: #dde8f3;
}

.vote-context-list dt {
    color: #9fb3c8;
}

.vote-context-list dd {
    color: #dce8f3;
}

.vote-sidebar-leaderboard {
    border-color: #425a73;
    background: linear-gradient(160deg, #1b2c3f 0%, #17283a 100%);
    box-shadow: 0 8px 18px rgba(8, 14, 24, 0.34);
}

.vote-sidebar-leaderboard__header {
    border-bottom-color: #3d5369;
}

.vote-sidebar-leaderboard__header h2,
.vote-sidebar-leaderboard__name {
    color: #eef5fc;
}

.vote-sidebar-leaderboard__row {
    border-top-color: rgba(66, 90, 115, 0.78);
    border-color: rgba(66, 90, 115, 0.82);
    background: rgba(15, 27, 40, 0.72);
}

.vote-sidebar-leaderboard__count {
    color: #eef5fc;
}

.vote-sidebar-leaderboard__rank {
    border-color: #50677f;
    background: #24384d;
    color: #dce8f3;
}

.vote-sidebar-leaderboard__row.vote-leaderboard-row--gold .vote-sidebar-leaderboard__rank {
    border-color: #d2a53b;
    background: linear-gradient(145deg, #f7d774 0%, #b8871d 100%);
    color: #3a2600;
}

.vote-sidebar-leaderboard__empty {
    color: #adc0d3;
}

.vote-reward-callout__title {
    color: #c9dbef;
}

.vote-reward-callout__line {
    color: #dce9f5;
}

.vote-reward-callout__hint {
    color: #adc0d3;
}

.vote-rewards-card__title {
    color: #eef5fc;
}

.vote-rewards-tier {
    border-color: #425a73;
    background: rgba(23, 39, 57, 0.72);
}

.vote-credit-spotlight {
    border-color: rgba(244, 107, 69, 0.42);
    background: linear-gradient(145deg, #3f2a24 0%, #33231f 100%);
}

.vote-credit-spotlight__label {
    color: #ffb39c;
}

.vote-credit-spotlight__value {
    color: #ffcfbf;
}

.vote-credit-spotlight__balance,
.vote-rewards-card__usage-intro {
    color: #cbbdb7;
}

.vote-credit-use-list li {
    border-color: #425a73;
    background: rgba(23, 39, 57, 0.72);
    color: #edf5fc;
}

.vote-rewards-tier--base {
    border-color: rgba(139, 196, 255, 0.32);
    background: rgba(31, 49, 68, 0.82);
}

.vote-rewards-tier--plus {
    border-color: rgba(244, 216, 132, 0.42);
    background: linear-gradient(145deg, #3f331a 0%, #302817 100%);
}

.vote-rewards-tier__label {
    color: #b7c8da;
}

.vote-rewards-tier__value {
    color: #edf5fc;
}

.vote-rewards-tier--plus .vote-rewards-tier__value,
.vote-rewards-tier__perk {
    color: #f4dca8;
}

.vote-guest-reward-helper__text {
    color: #adc0d3;
}

.vote-bumped-strip__link {
    border-color: #3f5670;
    background: #1a2b3d;
    color: #e1ebf5;
}

.vote-bumped-strip__link:hover {
    border-color: #4f6882;
    background: #1d3044;
}

.vote-bumped-strip__rank {
    color: #a2b7cc;
}

.vote-bumped-strip__icon {
    border-color: #435a73;
    background: #172739;
}

.vote-leaderboard-card__eyebrow {
    color: #9fd0ff;
}

.vote-leaderboard-card__total {
    border-color: #425a73;
    background: rgba(23, 39, 57, 0.78);
    color: #b8cadc;
}

.vote-leaderboard-card__total strong,
.vote-leaderboard-player {
    color: #eef5fc;
}

.vote-leaderboard-card__month,
.vote-leaderboard-pagination [data-leaderboard-page-status] {
    color: #adc0d3;
}

.vote-leaderboard-row--gold {
    background: linear-gradient(90deg, rgba(116, 86, 20, 0.42) 0%, rgba(39, 35, 24, 0.2) 100%);
}

.vote-leaderboard-row--silver {
    background: linear-gradient(90deg, rgba(101, 119, 137, 0.32) 0%, rgba(26, 39, 53, 0.18) 100%);
}

.vote-leaderboard-row--bronze {
    background: linear-gradient(90deg, rgba(124, 75, 39, 0.35) 0%, rgba(46, 32, 24, 0.2) 100%);
}

.vote-leaderboard-row--current {
    box-shadow: inset 4px 0 0 #ff8b69;
    background: linear-gradient(90deg, rgba(244, 107, 69, 0.22) 0%, rgba(244, 107, 69, 0.08) 100%);
}

.vote-leaderboard-rank__medal {
    border-color: #50677f;
    background: #24384d;
    color: #dce8f3;
}

.vote-leaderboard-player__badge {
    background: #542c25;
    color: #ffc7b8;
}

.server-detail-main {
    border-color: #3f5670;
    background: linear-gradient(158deg, #18293b 0%, #162637 100%);
}

.server-detail-faq-ad {
    margin-top: var(--space-1);
    margin-bottom: var(--space-2);
}

.vote-page-banner-ad {
    margin-top: 0;
    margin-bottom: var(--space-2);
}

.server-subheader-metric {
    border-color: #425a73;
    background: #1b2d40;
    color: #dce8f3;
}

.server-subheader-metric strong {
    color: #aec2d6;
}

.server-subheader-metric--status-online {
    border-color: rgba(57, 195, 133, 0.5);
    background: linear-gradient(165deg, rgba(27, 161, 109, 0.25) 0%, rgba(27, 161, 109, 0.16) 100%);
    color: #9de8c5;
}

.server-subheader-metric--status-online strong {
    color: #9de8c5;
}

.server-subheader-metric--status-offline {
    border-color: rgba(212, 104, 89, 0.48);
    background: linear-gradient(165deg, rgba(189, 62, 43, 0.28) 0%, rgba(189, 62, 43, 0.2) 100%);
    color: #f0b0a6;
}

.server-subheader-metric--status-offline strong {
    color: #f0b0a6;
}

.page-subheader--server-sticky .server-subheader-metric--link:hover,
.page-subheader--server-sticky .server-subheader-metric--link:focus {
    border-color: rgba(246, 184, 125, 0.52);
    color: #f6b87d;
}

.server-detail-aside {
    border-color: #3f5670;
    background: linear-gradient(160deg, #1a2b3d 0%, #172739 100%);
}

.server-overview__status-chip {
    border-color: #3f5670;
    background: #1b2e42;
    color: #b7c9dc;
}

.server-overview__status-chip strong {
    color: #edf4fb;
}

.server-activity-indicator {
    border-color: #3f5670;
    background: #1a2d40;
}

.server-activity-indicator--online {
    border-color: rgba(57, 195, 133, 0.36);
    background: rgba(27, 161, 109, 0.16);
}

.server-activity-indicator--offline {
    border-color: rgba(214, 107, 107, 0.34);
    background: rgba(176, 73, 73, 0.13);
}

.server-activity-indicator__label {
    color: #9fb3c8;
}

.server-activity-indicator__value {
    color: #edf4fb;
}

.server-overview__stat {
    border-color: #3f5670;
    background: linear-gradient(165deg, #1c2f43 0%, #192b3d 100%);
}

.server-overview__stat--primary {
    border-color: rgba(57, 195, 133, 0.38);
    background: linear-gradient(165deg, rgba(27, 161, 109, 0.2) 0%, rgba(27, 161, 109, 0.12) 100%);
}

.server-overview__stat--status-online {
    border-color: rgba(57, 195, 133, 0.36);
    background: linear-gradient(165deg, rgba(27, 161, 109, 0.18) 0%, rgba(27, 161, 109, 0.1) 100%);
}

.server-overview__stat--status-offline {
    border-color: rgba(214, 107, 107, 0.34);
    background: linear-gradient(165deg, rgba(176, 73, 73, 0.16) 0%, rgba(176, 73, 73, 0.1) 100%);
}

.server-overview__stat-label,
.server-overview__meta-list dt {
    color: #9fb3c8;
}

.server-overview__stat-value,
.server-overview__meta-list dd {
    color: #dce8f3;
}

.server-overview__lede {
    color: #a7bbcf;
}

.server-overview__header-icon {
    border-color: #3f5670;
    background: #1b2e42;
}

.server-owner-teaser {
    border-color: rgba(97, 145, 190, 0.32);
    background: linear-gradient(165deg, rgba(49, 92, 139, 0.22) 0%, rgba(27, 161, 109, 0.13) 100%);
}

.server-owner-teaser__eyebrow {
    color: #9fb3c8;
}

.server-owner-teaser h3 {
    color: #edf4fb;
}

.server-owner-teaser__action {
    border-color: #3f5670;
    background: rgba(26, 45, 64, 0.78);
    color: #dce8f3;
}

.server-owner-teaser__action:hover,
.server-owner-teaser__action:focus {
    border-color: #5a7490;
    background: #20384f;
    color: #ffffff;
}

.server-overview__meta-list>div {
    border-color: #3f5670;
    background: #1a2d40;
}

.server-overview__copy {
    background: transparent;
}

.server-overview__copy .server-ip-copy-box {
    border-color: #506a84;
    background: #101d2b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.server-overview__copy .server-ip-copy-box:hover,
.server-overview__copy .server-ip-copy-box:focus-visible {
    border-color: #607b97;
    background: #17283a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.server-overview-community {
    border-top-color: #3f5670;
}

.server-overview-community h3 {
    color: #9fb3c8;
}

.server-overview-community__link {
    border-color: #3f5670;
    border-left-color: var(--community-link-color);
    background: rgba(26, 45, 64, 0.78);
    color: #dce8f3;
}

.server-overview-community__link:hover,
.server-overview-community__link:focus-visible {
    border-color: #5a7490;
    border-left-color: var(--community-link-color);
    background: #20384f;
    color: #ffffff;
}

.server-overview-community__link--x,
.server-overview-community__link--twitter {
    --community-link-color: #e5e7eb;
}

.server-tabs {
    border-color: #415a74;
    background: linear-gradient(160deg, #1a2b3e 0%, #17283a 100%);
}

.server-tabs .card-body {
    border-bottom-color: #3c536c;
    background: linear-gradient(170deg, #1b2d40 0%, #18293b 100%);
}

.server-ip-copy-box {
    border-color: #44607c;
    background: linear-gradient(160deg, #1a2c3f 0%, #17293b 100%);
    color: #dce8f3;
}

.server-ip-copy-box:hover {
    border-color: #6280a0;
    background: linear-gradient(160deg, #1f3247 0%, #1a2d41 100%);
}

.server-ip-copy-box__label {
    color: #9fb3c8;
}

.server-ip-copy-box__value {
    color: #edf4fb;
}

.server-ip-copy-box__hint {
    color: #b6c8da;
}

.server-tab-trigger {
    border-color: transparent;
    background: transparent;
    color: #d7e3ef;
}

.server-tab-trigger:hover {
    border-color: #465f79;
    background: #1f3246;
}

.server-tab-trigger[aria-selected='true'] {
    border-color: #4f6882;
    background: #203447;
    color: #edf4fb;
    box-shadow: inset 0 -2px 0 #f18a66;
}

.page-subheader--server-sticky .site-breadcrumbs__list {
    color: #aabed3;
}

.page-subheader--server-sticky .site-breadcrumbs__item:not(:last-child)::after {
    color: #88a0b8;
}

.page-subheader--server-sticky .site-breadcrumbs__link {
    color: #c7d8ea;
}

.page-subheader--server-sticky .site-breadcrumbs__link:hover {
    color: #e7f1fb;
}

.page-subheader--server-sticky .site-breadcrumbs__current {
    color: #dde8f4;
}

.page-subheader--server-sticky .server-subheader-top-link {
    color: #c7d8ea;
}

.page-subheader--server-sticky .server-subheader-top-link:hover {
    color: #e7f1fb;
}

.server-tab-panel .card-header {
    background: transparent;
    border-bottom-color: #3d546d;
}

.server-tab-panel {
    border-top-color: #30465d;
}

.server-detail-meta-grid dt {
    color: #9fb3c8;
}

.server-detail-meta-grid dd {
    color: #dce8f3;
}

.server-info-section__title {
    color: #9fb3c8;
}

.server-info-section--narrative {
    border-color: #3c536c;
    background: linear-gradient(165deg, #1b2d40 0%, #18293b 100%);
}

.server-info-unified-card,
.server-about-taxonomy__group {
    border-color: #3c536c;
    background: linear-gradient(165deg, #1b2d40 0%, #18293b 100%);
}

.server-info-hero-cta {
    border-bottom-color: #3c536c;
}

.server-info-section__heading p,
.server-about-taxonomy__group h4 {
    color: #9fb3c8;
}

.server-about-readmore summary,
.server-about-readmore__toggle {
    border-color: #48627d;
    background: #203447;
    color: #cfe3f7;
}

.server-about-owner-prompt {
    border-color: #48627d;
    background: rgba(27, 45, 64, 0.7);
}

.server-about-owner-prompt p {
    color: #b6c8d9;
}

.server-info-banner-card {
    border-color: #3b526b;
    background: linear-gradient(165deg, #1b2d40 0%, #18293b 100%);
}

.server-info-banner-card__label {
    color: #a8bdd1;
}

.server-info-banner-card__meta {
    color: #94abc0;
}

.server-info-banner-copy .server-ip-copy-box {
    border-color: #506a84;
    background: #101d2b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.server-info-banner-copy .server-ip-copy-box:hover,
.server-info-banner-copy .server-ip-copy-box:focus-visible {
    border-color: #607b97;
    background: #17283a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.server-info-vote-card {
    border-color: #3b526b;
    background: linear-gradient(165deg, #1b2d40 0%, #18293b 100%);
}

.server-info-vote-card__copy h3 {
    color: #e4edf6;
}

.server-info-vote-card__copy p {
    color: #a9bbcf;
}

.server-media-embed {
    border-color: #3c536c;
    background: linear-gradient(165deg, #1b2d40 0%, #18293b 100%);
}

.server-trailer-embed,
.server-trailer-fallback {
    border-color: #3c536c;
    background: linear-gradient(165deg, #101d2b 0%, #17293b 100%);
}

.server-trailer-fallback p {
    color: #b6c8d9;
}

.server-detail-description,
.server-detail-note {
    color: #b6c8d9;
}

.server-taxonomy-chip {
    border-color: #435a73;
    background: #1b2d40;
    color: #d8e5f1;
}

.server-taxonomy-chip:hover {
    border-color: #5d7894;
    background: #22364a;
}

.server-taxonomy-empty {
    color: #a3b7cb;
}

.server-stat-card {
    border-color: #405970;
    background: linear-gradient(160deg, #1b2c3f 0%, #17283a 100%);
}

.server-stat-card h3,
.server-stat-card__label {
    color: #a5b8cc;
}

.server-stat-card__value {
    color: #edf4fb;
}

.server-stat-card__meta {
    color: #a8bccf;
}

.server-chart-card {
    border-color: #405970;
    background: linear-gradient(160deg, #1a2b3e 0%, #17283a 100%);
    box-shadow: 0 10px 22px rgba(8, 14, 24, 0.34);
}

.server-chart-card__header h3 {
    color: #dde8f3;
}

.server-chart-card__header p {
    color: #a8bccf;
}

.server-trend-chart svg {
    background: linear-gradient(180deg, #1a2b3f 0%, #162637 100%);
}

.server-trend-chart__axis {
    stroke: #506984;
}

.server-trend-chart__line--vote {
    stroke: #8bc4ff;
}

.server-trend-chart__labels {
    color: #9fb3c8;
}

.server-history-chart__svg {
    border-color: #526987;
    background: #142334;
}

.server-history-chart__grid line {
    stroke: #2b4158;
}

.server-history-chart__axis-labels text {
    fill: #9fb3c8;
}

.server-history-chart__area {
    fill: rgba(139, 196, 255, 0.12);
}

.server-history-chart__line {
    stroke: #8bc4ff;
}

.server-history-chart__point {
    fill: #f0a459;
    stroke: #142334;
}

.server-history-chart__hover-line {
    stroke: #7f96ad;
}

.server-history-chart__hover-point {
    fill: #8bc4ff;
    stroke: #142334;
}

.server-history-chart__tooltip {
    background: #526987;
    color: #ffffff;
}

.server-history-chart__select {
    border-color: #526987;
    background-color: #17283a;
    color: #dce8f4;
}

.server-history-chart__select:focus {
    border-color: #8bc4ff;
    box-shadow: 0 0 0 3px rgba(139, 196, 255, 0.2);
}

.server-chart-empty {
    border-color: #44607c;
    background: linear-gradient(180deg, #1a2c3f 0%, #17293b 100%);
}

.vote-faq-section,
.server-faq-section {
    border-color: #3f5670;
}

.server-faq-section>.card-header {
    border-bottom-color: #3a5068;
}

.server-faq-section__intro {
    color: #b3c4d6;
}

.advertise-page__hero {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(115deg, rgba(255, 252, 248, 0.98) 0%, rgba(255, 240, 221, 0.94) 52%, rgba(255, 230, 204, 0.78) 100%),
        url('/assets/images/components/advertising-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.advertise-page__hero>* {
    position: relative;
    z-index: 1;
}

.advertise-page__eyebrow {
    margin-bottom: var(--space-2);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9f5f26;
}

.advertise-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.advertise-options__intro {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.38rem;
}

.advertise-options__intro h2,
.advertise-options__intro p {
    margin-bottom: 0;
}

.advertise-options__intro p {
    color: var(--color-text-muted);
    max-width: 60rem;
}

.advertise-option-card {
    min-height: 100%;
}

.advertise-option-card--secondary {
    border-color: #d8e3ee;
    background: linear-gradient(165deg, #fbfcff 0%, #f4f8fc 100%);
    box-shadow: var(--shadow-sm);
}

.advertise-option-card__body {
    height: 100%;
    display: grid;
    gap: var(--space-2);
    align-content: start;
}

.advertise-option-card__tag {
    margin-bottom: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #9f5f26;
}

.advertise-option-card__body h2,
.advertise-option-card__body h3 {
    margin-bottom: 0;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.advertise-option-card__body p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.advertise-option-card__actions {
    margin-top: auto;
    margin-bottom: 0;
}

.advertise-game-selector {
    margin-top: auto;
    display: grid;
    gap: var(--space-2);
}

.advertise-game-selector__label {
    margin: 0;
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}

.advertise-game-selector__help {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.advertise-game-selector__empty {
    margin: 0;
    font-size: 0.82rem;
}

body.is-modal-open {
    overflow: hidden;
}

.advertise-game-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: var(--space-3);
    box-sizing: border-box;
}

.advertise-game-modal[hidden] {
    display: none;
}

.advertise-game-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(2px);
}

.advertise-game-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(44rem, calc(100vw - 2rem));
    max-height: min(38rem, calc(100vh - 5rem));
    overflow: hidden;
    border: 1px solid var(--color-menu-border);
    border-radius: var(--radius-md);
    background: var(--color-menu-bg);
    box-shadow: var(--shadow-md);
    padding: var(--space-3);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: var(--space-2);
    box-sizing: border-box;
}

.advertise-game-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
}

.advertise-game-modal__head h2 {
    margin: 0;
    font-size: 1.08rem;
}

.advertise-game-modal__close {
    width: 2rem;
    height: 2rem;
    min-height: 2rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-menu-border);
    background: transparent;
    color: var(--color-text-muted);
    box-shadow: none;
    padding: 0;
    flex: 0 0 auto;
}

.advertise-game-modal__close:hover {
    background: var(--color-menu-link-hover);
    border-color: var(--color-border);
    color: var(--color-text-primary);
    transform: none;
}

.advertise-game-modal__search {
    margin: 0;
    min-height: 2.1rem;
    font-size: 0.92rem;
}

.advertise-game-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.15rem;
}

.advertise-game-modal__item {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    min-height: 2rem;
    border: 1px solid var(--color-menu-border);
    border-radius: var(--radius-sm);
    padding: 0.38rem 0.55rem;
    color: var(--color-text-primary);
    font-size: 0.86rem;
    line-height: 1.2;
    background: transparent;
}

.advertise-game-modal__item:hover {
    border-color: var(--color-border);
    background: var(--color-menu-link-hover);
    color: var(--color-text-primary);
}

.advertise-game-modal__item:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
}

.advertise-game-modal__empty {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.advertise-page__divider {
    margin-top: var(--space-4);
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #d7e2ee;
}

.advertise-page__support {
    position: relative;
    overflow: hidden;
    margin-top: var(--space-3);
    border-color: #d7e2ee;
    background-image:
        linear-gradient(105deg, rgba(249, 251, 255, 0.98) 0%, rgba(244, 248, 253, 0.94) 56%, rgba(244, 248, 253, 0.78) 100%),
        url('/assets/images/components/advertising-help-bg.png');
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    box-shadow: none;
}

.advertise-page__support>* {
    position: relative;
    z-index: 1;
}

.advertise-page__support .card-body {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.advertise-page__support h2,
.advertise-page__support p {
    margin-bottom: 0;
}

.advertise-page__support h2 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.advertise-page__support p {
    color: var(--color-text-muted);
    margin-top: var(--space-2);
}

.advertise-page__support-actions {
    margin-top: var(--space-3);
}

.advertise-free-cta {
    border-color: #d7e2ee;
    background: transparent;
    box-shadow: none;
}

.advertise-free-cta__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.advertise-free-cta__copy {
    min-width: 0;
}

.advertise-free-cta__copy h2,
.advertise-free-cta__copy p {
    margin-bottom: 0;
}

.advertise-free-cta__copy p {
    margin-top: var(--space-1);
    color: var(--color-text-muted);
}

.advertise-free-cta__actions {
    margin: 0;
}

.advertise-game-page__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.advertise-game-page__opportunities .card-body {
    display: grid;
    gap: var(--space-2);
}

.advertise-game-page__opportunities h2,
.advertise-game-page__opportunities p {
    margin-bottom: 0;
}

.advertise-game-page__products {
    display: grid;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.advertise-game-page__products>* {
    position: relative;
    z-index: 1;
}

.advertise-game-page__products-header {
    display: grid;
    gap: var(--space-2);
}

.advertise-game-page__products-header h2,
.advertise-game-page__products-header p {
    margin-bottom: 0;
}

.advertise-game-page__products-more {
    margin: 0;
}

.advertise-game-page__product-grid {
    padding: 0 var(--space-2) var(--space-2);
    gap: var(--space-3);
}

.advertise-game-page__product-grid--core {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-page__server-owner-products .advertise-game-page__product-grid--core {
    grid-template-columns: minmax(0, 1fr);
}

.advertise-game-page__product-grid--bundle-row {
    grid-template-columns: minmax(0, 1fr);
    padding-top: var(--space-1);
}

.advertise-game-page__product-card {
    min-height: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.advertise-game-page__product-card>* {
    position: relative;
    z-index: 1;
}

.shop-page__server-owner-products .advertise-game-page__product-card:not(.advertise-game-page__product-card--bundle) {
    width: 100%;
    min-height: 0;
    height: auto;
    border-color: #cfdceb;
    box-shadow: 0 10px 24px rgba(28, 62, 95, 0.12);
}

.advertise-game-page__product-card--bundle {
    border-color: #cfdceb;
    box-shadow: 0 10px 24px rgba(28, 62, 95, 0.12);
    width: 100%;
}

.shop-page__server-owner-products .advertise-game-page__product-card--bundle {
    min-height: 0;
    height: auto;
}

.advertise-game-page__title-group {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.advertise-game-page__recommended-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9d9ec;
    border-radius: var(--radius-pill);
    background: linear-gradient(165deg, #eff5fb 0%, #e6f0fa 100%);
    color: #30506f;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 0.22rem 0.56rem;
}

.advertise-game-page__product-body {
    display: grid;
    gap: var(--space-2);
    height: 100%;
}

.advertise-game-page__product-body h3,
.advertise-game-page__product-body p {
    margin-bottom: 0;
}

.advertise-game-page__product-meta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9f5f26;
}

.advertise-game-page__product-feature {
    color: var(--color-text-muted);
}

.advertise-game-page__product-price {
    margin-top: auto;
    font-weight: 700;
}

.advertise-game-page__product-actions {
    margin: 0;
}

.advertise-game-page__product-preview {
    margin: 0;
}

.advertise-game-page__product-preview .shop-item-preview {
    margin: 0;
    min-height: 7.9rem;
}

.advertise-game-page__product-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    height: 100%;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal {
    display: grid;
    grid-template-columns: minmax(360px, 380px) minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    height: auto;
    padding: 20px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-card,
.shop-page__server-owner-products .advertise-game-page__product-card > *,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal > * {
    min-width: 0;
    box-sizing: border-box;
}

.advertise-game-page__product-main {
    display: grid;
    gap: 0.55rem;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal > .advertise-game-page__product-preview,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal > .advertise-game-page__product-main,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal > .advertise-game-page__product-purchase {
    width: auto;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
    flex: initial;
    flex-basis: auto;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal > .advertise-game-page__product-preview {
    display: grid;
    align-content: start;
    gap: 12px;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal > .advertise-game-page__product-main {
    align-content: start;
    gap: 12px;
    grid-column: 2;
    grid-row: 1;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal > .advertise-game-page__product-preview .shop-item-preview {
    min-height: 0;
    height: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__hint {
    font-size: 0.82rem;
    line-height: 1.35;
}

.advertise-game-page__product-purchase {
    margin-top: auto;
    display: grid;
    gap: 0.55rem;
}

.advertise-game-page__product-heading {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 0;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .advertise-game-page__product-purchase {
    display: flex;
    flex-direction: column;
    align-self: start;
    align-items: stretch;
    gap: 12px;
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .advertise-game-page__product-purchase > * {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .advertise-game-page__includes {
    align-self: stretch;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__meta,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__state,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__flow-hint {
    font-size: 0.76rem;
    line-height: 1.25;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__meta--active-instances {
    overflow-wrap: anywhere;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__active-promotions {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
    max-width: 100%;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__active-promotions-title {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__active-promotions-list {
    display: grid;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__active-promotions-list li {
    display: grid;
    gap: 0.1rem;
    margin: 0;
    min-width: 0;
    line-height: 1.25;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__active-promotions-server {
    min-width: 0;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--color-text-primary);
    overflow-wrap: anywhere;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__active-promotions-expiry {
    min-width: 0;
    color: var(--color-text-muted);
    font-size: 0.74rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__auth-action,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal form {
    align-self: stretch;
    margin-top: 0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal form {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0.7rem;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal input,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal select,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__intent-panel,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__intent-actions {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation {
    border-color: rgba(139, 196, 255, 0.28);
    background: linear-gradient(165deg, rgba(31, 49, 68, 0.96) 0%, rgba(19, 34, 51, 0.96) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 24px rgba(5, 12, 22, 0.28);
    color: #e4edf7;
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation label {
    color: #d7e4f2;
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation .shop-item-card__hint,
.shop-page__server-owner-products .shop-item-card__intent-panel--activation .shop-item-card__flow-hint {
    color: #a7b9cb;
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation input,
.shop-page__server-owner-products .shop-item-card__intent-panel--activation select,
.shop-page__server-owner-products .shop-item-card__intent-panel--activation textarea {
    border-color: #3f5670;
    background: #101d2c;
    color: #e4edf7;
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation input::placeholder,
.shop-page__server-owner-products .shop-item-card__intent-panel--activation textarea::placeholder {
    color: #8ea3b8;
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation select option {
    background: #101d2c;
    color: #e4edf7;
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation input:hover,
.shop-page__server-owner-products .shop-item-card__intent-panel--activation select:hover,
.shop-page__server-owner-products .shop-item-card__intent-panel--activation textarea:hover {
    border-color: #5c7894;
    background: #132334;
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation input:focus,
.shop-page__server-owner-products .shop-item-card__intent-panel--activation select:focus,
.shop-page__server-owner-products .shop-item-card__intent-panel--activation textarea:focus {
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 3px rgba(243, 180, 95, 0.2);
}

.shop-page__server-owner-products .shop-item-card__intent-panel--activation .shop-item-card__state--warning {
    border-color: #806637;
    background: #2a2314;
    color: #e9cb8d;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__buy {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal form > .shop-item-card__buy,
.shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__auth-action {
    margin-top: 0;
}

.advertise-game-page__product-content--bundle {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    height: auto;
}

.advertise-game-page__bundle-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.85fr);
    align-items: stretch;
    column-gap: var(--space-3);
    row-gap: var(--space-3);
}

.advertise-game-page__product-content--bundle .advertise-game-page__product-main {
    gap: var(--space-2);
}

.advertise-game-page__product-content--bundle .advertise-game-page__product-purchase {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: 0;
    min-width: 0;
}

.advertise-game-page__product-card--bundle .advertise-game-page__product-preview .shop-item-preview {
    min-height: 9.1rem;
}

.advertise-game-page__product-card--bundle .shop-item-card__price {
    margin-top: 0;
}

.advertise-game-page__product-card--bundle form {
    margin-top: auto;
    height: auto;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal.advertise-game-page__product-content--bundle form {
    margin-top: 0;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal.advertise-game-page__product-content--bundle {
    display: grid;
    grid-template-columns: minmax(360px, 380px) minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    height: auto;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal.advertise-game-page__product-content--bundle .advertise-game-page__product-purchase {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-page__server-owner-products .advertise-game-page__product-content--horizontal.advertise-game-page__product-content--bundle .advertise-game-page__product-preview .shop-item-preview {
    min-height: 0;
}

.advertise-game-page__bundle-status {
    display: grid;
    gap: 0.45rem;
}

.advertise-game-page__value-badge {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #efd7aa;
    border-radius: var(--radius-pill);
    background: #fff6e6;
    color: #6c4f1b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 0.2rem 0.55rem;
}

.advertise-game-page__includes {
    margin: 0;
    padding: 0.55rem 0.6rem;
    border: 1px solid #d6e1eb;
    border-radius: var(--radius-sm);
    background: #f7fafd;
    display: grid;
    gap: 0.4rem;
}

.advertise-game-page__includes-title {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5b6d80;
}

.advertise-game-page__includes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.25rem;
}

.advertise-game-page__includes-list li {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-text-primary);
    font-size: 0.8rem;
    line-height: 1.3;
}

.advertise-game-page__includes-list li span {
    min-width: 0;
    overflow-wrap: break-word;
}

.advertise-game-page__includes-list .ui-icon {
    color: #1f8a4b;
    flex: 0 0 auto;
}

@media (max-width: 1100px) {
    .advertise-game-page__product-grid--core {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal {
        grid-template-columns: 1fr;
    }

    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal.advertise-game-page__product-content--bundle {
        grid-template-columns: 1fr;
    }

    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal .advertise-game-page__product-purchase {
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: 1fr;
    }

    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal > .advertise-game-page__product-preview,
    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal > .advertise-game-page__product-main {
        grid-column: 1;
        grid-row: auto;
    }

    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal.advertise-game-page__product-content--bundle .advertise-game-page__product-purchase {
        grid-template-columns: 1fr;
    }

    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal .advertise-game-page__includes,
    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__meta,
    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__state,
    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__shortfall-action,
    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal .shop-item-card__auth-action,
    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal form {
        grid-column: 1;
    }

    .shop-page__server-owner-products .advertise-game-page__product-content--horizontal form {
        height: auto;
    }

    .advertise-game-page__product-content--bundle,
    .advertise-game-page__bundle-layout {
        grid-template-columns: 1fr;
    }
}

.advertise-game-page__support .card-body {
    display: grid;
    gap: var(--space-2);
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.advertise-game-page__support h2,
.advertise-game-page__support p {
    margin-bottom: 0;
}

.advertise-game-page__support h2 {
    font-size: clamp(1.14rem, 1.9vw, 1.42rem);
}

.advertise-game-page__support-actions {
    margin: 0;
}

.advertise-game-page__support-note {
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.advertise-game-page__faq .server-faq-section__intro {
    margin-bottom: var(--space-2);
}

.advertise-page__closing {
    border-color: #d6e0ea;
    background: linear-gradient(160deg, #f8fbff 0%, #f2f7fd 100%);
}

.advertise-page__closing-body {
    display: grid;
    gap: var(--space-2);
}

.advertise-page__closing-body h2 {
    margin-bottom: 0;
}

.advertise-page__closing-body p {
    margin-bottom: 0;
    max-width: 56rem;
}

.advertise-page__closing-actions {
    margin-top: var(--space-2);
    margin-bottom: 0;
}

.advertise-page__hero {
    background-image:
        linear-gradient(112deg, rgba(13, 23, 34, 0.98) 0%, rgba(26, 41, 58, 0.94) 46%, rgba(24, 39, 57, 0.78) 70%, rgba(12, 22, 34, 0.58) 100%),
        url('/assets/images/components/advertising-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.advertise-game-page__hero {
    background-image:
        linear-gradient(112deg, rgba(13, 23, 34, 0.99) 0%, rgba(18, 31, 46, 0.96) 42%, rgba(15, 27, 41, 0.78) 66%, rgba(8, 16, 25, 0.5) 100%),
        url('/assets/images/components/server-advertising-bg.png');
    background-position: center right;
    background-repeat: no-repeat;
}

.advertise-page__eyebrow {
    color: #f6b87d;
}

.advertise-option-card__tag {
    color: #f6b87d;
}

.advertise-option-card--secondary {
    border-color: #3d556f;
    background: linear-gradient(165deg, #1c2d40 0%, #18283a 100%);
}

.advertise-game-selector__label {
    color: #e3edf8;
}

@media (min-width: 1220px) {
    .advertise-game-modal__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.advertise-page__closing {
    border-color: #3f5670;
    background: linear-gradient(165deg, #1a2a3c 0%, #162536 100%);
}

.advertise-page__divider {
    border-top-color: #3c536b;
}

.advertise-page__support {
    border-color: #3c536b;
    background-image:
        linear-gradient(105deg, rgba(24, 40, 58, 0.98) 0%, rgba(25, 41, 59, 0.92) 56%, rgba(16, 28, 42, 0.68) 100%),
        url('/assets/images/components/advertising-help-bg.png');
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.advertise-page__support p {
    color: #b7c8da;
}

.advertise-page:not(.advertise-game-page)>.advertise-page__hero {
    background-color: #172739;
    background-image:
        linear-gradient(105deg, rgba(7, 18, 31, 0.6) 0%, rgba(7, 18, 31, 0.24) 100%),
        url('/assets/images/components/advertising-bg.png');
    background-size: 100% 100%, cover;
    background-position: center, center right;
    background-repeat: no-repeat;
}

.advertise-page:not(.advertise-game-page)>.advertise-page__hero>.advertise-page__eyebrow,
.advertise-page:not(.advertise-game-page)>.advertise-page__hero>.hero__title,
.advertise-page:not(.advertise-game-page)>.advertise-page__hero>.hero__subtitle {
    text-shadow: 0 1px 2px rgba(5, 12, 22, 0.58);
}

.advertise-page:not(.advertise-game-page) .advertise-page__support {
    background-color: #19293b;
    background-image:
        linear-gradient(105deg, rgba(7, 18, 31, 0.72) 0%, rgba(7, 18, 31, 0.5) 58%, rgba(7, 18, 31, 0.26) 100%),
        url('/assets/images/components/advertising-help-bg.png');
    background-size: 100% 100%, cover;
    background-position: center, right -0.5rem bottom -2.25rem;
    background-repeat: no-repeat;
}

.advertise-page:not(.advertise-game-page) .advertise-page__support h2,
.advertise-page:not(.advertise-game-page) .advertise-page__support p {
    text-shadow: 0 1px 2px rgba(5, 12, 22, 0.5);
}

.advertise-free-cta {
    border-color: #3c536b;
    background: transparent;
}

.advertise-free-cta__copy p {
    color: #b7c8da;
}

.advertise-game-page__products {
    background-color: #18293b;
    background-image:
        linear-gradient(115deg, rgba(18, 31, 46, 0.68) 0%, rgba(21, 36, 53, 0.48) 56%, rgba(13, 23, 34, 0.24) 100%),
        url('/assets/images/components/all-game-advertising-bg.png');
    background-position: right bottom;
}

.advertise-game-page__product-meta {
    color: #f6b87d;
}

.advertise-game-page__support-note {
    color: #b7c8da;
}

.advertise-game-page__value-badge {
    border-color: #81642e;
    background: #3f331a;
    color: #f4dca8;
}

.advertise-game-page__product-card--bundle {
    border-color: #4c6480;
    box-shadow: 0 12px 28px rgba(5, 12, 22, 0.42);
}

.shop-page__server-owner-products .advertise-game-page__product-card:not(.advertise-game-page__product-card--bundle) {
    border-color: #4c6480;
    box-shadow: 0 12px 28px rgba(5, 12, 22, 0.42);
}

.advertise-game-page__product-card--premium-highlight {
    background-image:
        linear-gradient(180deg, rgba(13, 28, 43, 0.38) 0%, rgba(13, 28, 43, 0.1) 34%, rgba(13, 28, 43, 0) 60%),
        linear-gradient(90deg, rgba(13, 28, 43, 0.92) 0%, rgba(13, 28, 43, 0.64) 54%, rgba(13, 28, 43, 0.2) 100%),
        url('/assets/images/components/premium-highlight-bg.png');
    background-position: right bottom, right bottom, right 78%;
}

.advertise-game-page__product-card--golden-badge {
    background-image:
        linear-gradient(180deg, rgba(13, 28, 43, 0.38) 0%, rgba(13, 28, 43, 0.1) 34%, rgba(13, 28, 43, 0) 60%),
        linear-gradient(90deg, rgba(13, 28, 43, 0.92) 0%, rgba(13, 28, 43, 0.64) 54%, rgba(13, 28, 43, 0.2) 100%),
        url('/assets/images/components/gold-server-bg.png');
    background-position: right bottom, right bottom, right 78%;
}

.advertise-game-page__product-card--category-top {
    background-image:
        linear-gradient(180deg, rgba(13, 28, 43, 0.38) 0%, rgba(13, 28, 43, 0.1) 34%, rgba(13, 28, 43, 0) 60%),
        linear-gradient(90deg, rgba(13, 28, 43, 0.92) 0%, rgba(13, 28, 43, 0.64) 54%, rgba(13, 28, 43, 0.2) 100%),
        url('/assets/images/components/category-top-bg.png');
    background-position: right bottom, right bottom, right 78%;
}

.advertise-game-page__product-card--all-in-one {
    background-image:
        linear-gradient(180deg, rgba(13, 28, 43, 0.4) 0%, rgba(13, 28, 43, 0.12) 34%, rgba(13, 28, 43, 0) 60%),
        linear-gradient(90deg, rgba(13, 28, 43, 0.9) 0%, rgba(13, 28, 43, 0.58) 52%, rgba(13, 28, 43, 0.16) 100%),
        url('/assets/images/components/all-in-one-bg.png');
    background-position: right bottom, right bottom, right 78%;
}

.advertise-game-page__product-card .shop-item-card__header {
    border-bottom-color: rgba(104, 132, 160, 0.34);
    background:
        linear-gradient(165deg, rgba(24, 40, 57, 0.94) 0%, rgba(18, 31, 46, 0.86) 100%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.advertise-game-page__product-card .advertise-game-page__product-content {
    background: linear-gradient(90deg, rgba(18, 31, 46, 0.66) 0%, rgba(18, 31, 46, 0.4) 62%, rgba(18, 31, 46, 0.2) 100%);
}

.advertise-game-page__recommended-badge {
    border-color: #56779b;
    background: linear-gradient(165deg, #243a52 0%, #20354b 100%);
    color: #cde0f3;
}

.advertise-game-page__includes {
    border-color: #48627d;
    background: #1f3144;
}

.advertise-game-page__includes-title {
    color: #a9bfd4;
}

.btn:focus-visible,
button:focus-visible,
input[type='submit']:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible {
    outline: 3px solid #7dd3fc;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(8, 15, 25, 0.86), 0 0 0 8px rgba(125, 211, 252, 0.28);
}

@media (max-width: 1100px) {
    .advertise-page__hero {
        background-position: center right -6rem;
    }

    .advertise-game-page__hero {
        background-image:
            linear-gradient(112deg, rgba(13, 23, 34, 0.99) 0%, rgba(18, 31, 46, 0.97) 48%, rgba(15, 27, 41, 0.84) 72%, rgba(8, 16, 25, 0.62) 100%),
            url('/assets/images/components/server-advertising-bg.png');
        background-position: center right -4rem;
    }

    .advertise-page__support {
        background-position: bottom right -4rem;
    }

    .advertise-page:not(.advertise-game-page) .advertise-page__support {
        background-position: center, right -3.5rem bottom -2.25rem;
    }

    .advertise-game-page__products {
        background-position: right -2rem bottom;
    }

    .advertise-game-page__product-card {
        background-position: right -1.5rem bottom;
    }

    .advertise-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .advertise-page__hero {
        background-image:
            linear-gradient(125deg, rgba(13, 23, 34, 0.99) 0%, rgba(18, 31, 46, 0.95) 58%, rgba(12, 22, 34, 0.82) 100%),
            url('/assets/images/components/advertising-bg.png');
        background-position: center top;
    }

    .advertise-game-page__hero {
        background-image:
            linear-gradient(125deg, rgba(13, 23, 34, 1) 0%, rgba(18, 31, 46, 0.98) 56%, rgba(12, 22, 34, 0.9) 100%),
            url('/assets/images/components/server-advertising-bg.png');
        background-position: top right -7rem;
    }

    .advertise-page__support {
        background-image:
            linear-gradient(125deg, rgba(24, 40, 58, 0.98) 0%, rgba(20, 35, 51, 0.94) 64%, rgba(16, 28, 42, 0.84) 100%),
            url('/assets/images/components/advertising-help-bg.png');
        background-position: bottom right;
    }

    .advertise-page:not(.advertise-game-page)>.advertise-page__hero {
        background-image:
            linear-gradient(105deg, rgba(7, 18, 31, 0.66) 0%, rgba(7, 18, 31, 0.3) 100%),
            url('/assets/images/components/advertising-bg.png');
        background-position: center, center top;
    }

    .advertise-page:not(.advertise-game-page) .advertise-page__support {
        background-image:
            linear-gradient(105deg, rgba(7, 18, 31, 0.78) 0%, rgba(7, 18, 31, 0.56) 60%, rgba(7, 18, 31, 0.34) 100%),
            url('/assets/images/components/advertising-help-bg.png');
        background-position: center, right -4.5rem bottom -1.75rem;
    }

    .advertise-game-page__products {
        background-image:
            linear-gradient(135deg, rgba(18, 31, 46, 0.82) 0%, rgba(21, 36, 53, 0.62) 58%, rgba(13, 23, 34, 0.34) 100%),
            url('/assets/images/components/all-game-advertising-bg.png');
        background-position: right -5rem bottom;
    }

    .advertise-game-page__product-card {
        background-position: right bottom, right bottom, right -4rem bottom;
    }

    .advertise-game-page__product-card--premium-highlight {
        background-image:
            linear-gradient(180deg, rgba(13, 28, 43, 0.52) 0%, rgba(13, 28, 43, 0.18) 34%, rgba(13, 28, 43, 0.04) 60%),
            linear-gradient(90deg, rgba(13, 28, 43, 0.96) 0%, rgba(13, 28, 43, 0.78) 58%, rgba(13, 28, 43, 0.42) 100%),
            url('/assets/images/components/premium-highlight-bg.png');
    }

    .advertise-game-page__product-card--golden-badge {
        background-image:
            linear-gradient(180deg, rgba(13, 28, 43, 0.52) 0%, rgba(13, 28, 43, 0.18) 34%, rgba(13, 28, 43, 0.04) 60%),
            linear-gradient(90deg, rgba(13, 28, 43, 0.96) 0%, rgba(13, 28, 43, 0.78) 58%, rgba(13, 28, 43, 0.42) 100%),
            url('/assets/images/components/gold-server-bg.png');
    }

    .advertise-game-page__product-card--category-top {
        background-image:
            linear-gradient(180deg, rgba(13, 28, 43, 0.52) 0%, rgba(13, 28, 43, 0.18) 34%, rgba(13, 28, 43, 0.04) 60%),
            linear-gradient(90deg, rgba(13, 28, 43, 0.96) 0%, rgba(13, 28, 43, 0.78) 58%, rgba(13, 28, 43, 0.42) 100%),
            url('/assets/images/components/category-top-bg.png');
    }

    .advertise-game-page__product-card--all-in-one {
        background-image:
            linear-gradient(180deg, rgba(13, 28, 43, 0.52) 0%, rgba(13, 28, 43, 0.18) 34%, rgba(13, 28, 43, 0.04) 60%),
            linear-gradient(90deg, rgba(13, 28, 43, 0.96) 0%, rgba(13, 28, 43, 0.76) 58%, rgba(13, 28, 43, 0.38) 100%),
            url('/assets/images/components/all-in-one-bg.png');
    }

    .advertise-options {
        grid-template-columns: 1fr;
    }

    .advertise-game-modal {
        padding: var(--space-2);
    }

    .advertise-game-modal__dialog {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
        padding: var(--space-2);
    }

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

.advertise-sitewide__hero {
    background: linear-gradient(145deg, #f9fcff 0%, #e9f2ff 54%, #fdf2e5 100%);
    padding: var(--space-4) var(--space-5);
}

.advertise-sitewide__hero-main {
    display: grid;
    gap: var(--space-1);
    max-width: 48rem;
}

.advertise-sitewide__owner-panel {
    min-height: 0;
    border-color: #d6e0ea;
    background: linear-gradient(165deg, #ffffff 0%, #f5f9fd 100%);
}

.advertise-sitewide__owner-panel .advertise-option-card__actions {
    margin-top: var(--space-2);
}

.advertise-sitewide__owner-panel .advertise-game-selector__empty {
    margin-top: var(--space-2);
}

.advertise-sitewide__eyebrow {
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #315c8b;
}

.advertise-sitewide__hero-main .hero__title {
    margin: 0;
}

.advertise-sitewide__hero-main .hero__subtitle {
    margin: 0;
    max-width: 44rem;
}

.advertise-sitewide__hero-actions {
    margin-top: var(--space-1);
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
}

.advertise-sitewide__hero-back {
    margin: 0;
}

.advertise-sitewide__section {
    display: grid;
    gap: var(--space-3);
}

.advertise-sitewide__inventory {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-3);
}

.advertise-sitewide__section-header {
    display: grid;
    gap: 0.45rem;
}

.advertise-sitewide__section-header h2,
.advertise-sitewide__section-header p {
    margin-bottom: 0;
}

.advertise-sitewide__section-header p {
    color: var(--color-text-muted);
    max-width: 56rem;
}

.advertise-sitewide__package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3);
    align-items: stretch;
}

.advertise-sitewide__package-card {
    min-height: 100%;
    display: flex;
}

.advertise-sitewide__package-body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: var(--space-3);
}

.advertise-sitewide__package-body>* {
    margin-bottom: 0;
}

.advertise-sitewide__package-placement {
    margin-bottom: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #315c8b;
}

.advertise-sitewide__package-body h3 {
    margin-bottom: 0;
    font-size: clamp(1.06rem, 1.7vw, 1.25rem);
    line-height: 1.25;
    min-height: 2.7rem;
}

.advertise-sitewide__package-price {
    margin-bottom: 0;
    margin-top: 0.12rem;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.advertise-sitewide__package-price span {
    margin-left: 0.15rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.advertise-sitewide__package-meta {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.advertise-sitewide__package-guidance {
    margin-bottom: 0;
    color: #3f5368;
    font-size: 0.86rem;
    line-height: 1.45;
}

.advertise-sitewide__package-availability {
    margin-bottom: 0;
    color: #1c6b43;
    font-weight: 600;
}

.advertise-sitewide__package-availability--full {
    color: #b64e42;
}

.advertise-sitewide__package-campaign-state {
    margin-bottom: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    color: #315c8b;
    font-size: 0.8rem;
    line-height: 1.3;
}

.advertise-sitewide__package-campaign-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c4d7ea;
    border-radius: var(--radius-pill);
    background: #edf4fb;
    color: #2f516f;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.12rem 0.48rem;
}

.advertise-sitewide__package-actions {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: var(--space-1);
}

.advertise-sitewide__package-actions .btn {
    margin: 0;
    width: 100%;
}

.advertise-sitewide__strategic-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: var(--space-3);
    align-items: stretch;
}

.advertise-sitewide__strategic-card {
    border-style: dashed;
    min-height: 100%;
    display: flex;
}

.advertise-sitewide__strategic-card .advertise-sitewide__package-body {
    padding: var(--space-4);
}

.advertise-sitewide__strategic-card .advertise-sitewide__package-body h3 {
    min-height: 0;
}

.advertise-sitewide__strategic-card .advertise-sitewide__package-actions {
    padding-top: var(--space-2);
}

.advertise-sitewide__strategic-card .advertise-sitewide__package-actions .btn {
    width: auto;
}

.advertise-sitewide__strategic-owner-path {
    display: grid;
    align-items: stretch;
}

.advertise-sitewide__checkout {
    border-color: #d4e1ec;
}

.advertise-sitewide__checkout-body {
    display: grid;
    gap: var(--space-2);
}

.advertise-sitewide__checkout-body--focused {
    box-shadow: 0 0 0 2px rgba(238, 168, 73, 0.22);
    border-radius: var(--radius-md);
}

.advertise-sitewide__checkout--spotlight .advertise-sitewide__checkout-body {
    box-shadow: 0 0 0 2px rgba(238, 168, 73, 0.26), 0 14px 30px rgba(62, 92, 124, 0.14);
    transition: box-shadow 240ms ease;
}

.advertise-sitewide__checkout-body h2,
.advertise-sitewide__checkout-body p {
    margin-bottom: 0;
}

.advertise-sitewide__checkout-duration {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.advertise-sitewide__checkout-alerts {
    margin: var(--space-2) 0;
}

.advertise-sitewide__checkout-alerts .flash-stack {
    margin-bottom: 0;
}

.advertise-sitewide__checkout-upload-help {
    margin-top: 0.45rem;
    display: grid;
    gap: 0.14rem;
    color: #4a5f74;
    font-size: 0.82rem;
    line-height: 1.38;
}

.advertise-sitewide__checkout-upload-line {
    display: block;
}

.advertise-sitewide__checkout-form {
    display: grid;
    gap: var(--space-2);
}

.advertise-sitewide__checkout-form>p {
    margin: 0;
}

.advertise-sitewide__checkout-selected {
    margin: 0;
    font-size: 0.82rem;
    color: #315c8b;
    font-weight: 600;
}

.advertise-sitewide__checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: center;
}

.advertise-sitewide__checkout-admin-action {
    border-width: 1px;
}

.advertise-sitewide__checkout-form small {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-text-muted);
}

.advertise-sitewide__checkout-admin-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.35;
}

.advertise-sitewide__how {
    display: grid;
    gap: var(--space-3);
}

.advertise-sitewide__how h2,
.advertise-sitewide__how p {
    margin-bottom: 0;
}

.advertise-sitewide__how>p {
    color: var(--color-text-muted);
    max-width: 56rem;
}

.advertise-sitewide__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3);
}

.advertise-sitewide__benefits article {
    display: grid;
    gap: var(--space-2);
}

.advertise-sitewide__benefits h3,
.advertise-sitewide__benefits p {
    margin-bottom: 0;
}

.advertise-sitewide__benefits p {
    color: var(--color-text-muted);
}

.advertise-sitewide__footer-cta {
    border-color: #d6e0ea;
    background: linear-gradient(165deg, #f6fbff 0%, #eef6ff 100%);
}

.advertise-sitewide__footer-body {
    display: grid;
    gap: var(--space-2);
}

.advertise-sitewide__footer-body h2,
.advertise-sitewide__footer-body p {
    margin-bottom: 0;
}

.advertise-sitewide__footer-body>p {
    color: var(--color-text-muted);
}

.advertise-sitewide__footer-actions {
    margin-top: var(--space-2);
    margin-bottom: 0;
}

.advertise-sitewide__hero {
    background: linear-gradient(145deg, #203247 0%, #253b54 50%, #2d445d 100%);
}

.advertise-sitewide__owner-panel {
    border-color: #48627d;
    background: linear-gradient(165deg, #1f3144 0%, #1a2b3d 100%);
}

.advertise-sitewide__eyebrow,
.advertise-sitewide__package-placement {
    color: #8bc4ff;
}

.advertise-sitewide__package-guidance {
    color: #bdd0e2;
}

.advertise-sitewide__package-availability {
    color: #78d6a7;
}

.advertise-sitewide__package-availability--full {
    color: #ff9488;
}

.advertise-sitewide__package-campaign-state {
    color: #9ec5eb;
}

.advertise-sitewide__package-campaign-label {
    border-color: #486785;
    background: #21364a;
    color: #c4dcf2;
}

.advertise-sitewide__footer-cta {
    border-color: #3f5670;
    background: linear-gradient(165deg, #17283a 0%, #132233 100%);
}

.advertise-sitewide__strategic-card {
    border-color: #4d6782;
}

.advertise-sitewide__checkout {
    border-color: #3f5670;
}

.advertise-sitewide__checkout-body--focused {
    box-shadow: 0 0 0 2px rgba(139, 196, 255, 0.24);
}

.advertise-sitewide__checkout--spotlight .advertise-sitewide__checkout-body {
    box-shadow: 0 0 0 2px rgba(139, 196, 255, 0.3), 0 14px 30px rgba(11, 18, 25, 0.42);
}

.advertise-sitewide__checkout-upload-help {
    color: #c4d4e4;
}

.advertise-sitewide__checkout-selected {
    color: #8bc4ff;
}

@media (max-width: 1100px) {
    .advertise-sitewide__hero {
        padding: var(--space-4) var(--space-4);
    }

    .advertise-sitewide__strategic-row,
    .advertise-sitewide__package-grid,
    .advertise-sitewide__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .advertise-sitewide__inventory {
        padding: var(--space-2);
    }

    .advertise-sitewide__strategic-row,
    .advertise-sitewide__package-grid,
    .advertise-sitewide__benefits {
        grid-template-columns: 1fr;
    }

    .advertise-sitewide__strategic-card .advertise-sitewide__package-body {
        padding: var(--space-3);
    }

    .advertise-sitewide__checkout-actions .btn {
        width: 100%;
    }
}

.html-sitemap-page {
    display: grid;
    gap: var(--space-4);
}

.html-sitemap-page__hero {
    margin-bottom: 0;
}

.html-sitemap-page__eyebrow {
    margin-bottom: var(--space-1);
    color: var(--color-text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.html-sitemap-page__meta {
    margin: var(--space-2) 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.html-sitemap-page__grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.html-sitemap-page__section {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg-soft);
    padding: var(--space-2);
}

.html-sitemap-page__section h2 {
    margin: 0 0 var(--space-1);
    font-size: 1rem;
}

.html-sitemap-page__section p {
    margin: 0 0 var(--space-1);
    color: var(--color-text-muted);
    font-size: 0.86rem;
    line-height: 1.35;
}

.html-sitemap-page__section ul {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.35rem;
}

.html-sitemap-page__section li {
    margin: 0;
}

.html-sitemap-page__section a {
    color: var(--color-primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
}

.html-sitemap-page__section a:hover {
    color: var(--color-accent-coral);
}

.html-sitemap-page__meta,
.html-sitemap-page__section p {
    color: #a9bbcf;
}

.html-sitemap-page__section {
    border-color: #3e5368;
    background: #1a2a3b;
}

.html-sitemap-page__section a {
    color: #e5eef7;
}

@media (max-width: 980px) {
    .html-sitemap-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .html-sitemap-page__grid {
        grid-template-columns: 1fr;
    }
}
