/* ESRONE formal player identity homepage */

body.home-index-page {
    background: #f5f6f8;
    color: #1f2328;
}

.home-index-page a {
    border-bottom: 0;
}

.home-index {
    --home-index-red: #c8102e;
    --home-index-red-dark: #a50d26;
    --home-index-silver: #d8dce2;
    --home-index-silver-soft: #f4f5f7;
    --home-index-charcoal: #292d33;
    --home-index-muted: #66707c;
    width: 95%;
    margin: 1em;
    box-sizing: border-box;
}

.home-index-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.home-index .home-hot-games {
    margin-bottom: 24px;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid var(--home-index-silver);
    border-top: 4px solid var(--home-index-red);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(26, 30, 36, .06);
}

.home-index .home-hot-games__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.home-index .home-hot-games__header h2 {
    margin: 0;
    color: var(--home-index-charcoal);
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: 0;
}

.home-index .home-hot-games__title-link {
    color: inherit;
    text-decoration: none;
}

.home-index .home-hot-games__title-link:hover {
    color: var(--home-index-red-dark);
}

.home-index .home-hot-games__title-link:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(200, 16, 46, .2);
    outline-offset: 4px;
}

.home-index .home-hot-games__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-index .home-hot-game-card {
    display: flex;
    min-width: 0;
    min-height: 44px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--home-index-silver);
    border-radius: 8px;
    background: #fff;
    color: var(--home-index-charcoal);
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-index .home-hot-game-card:hover,
.home-index .home-hot-game-card:focus-visible {
    border-color: var(--home-index-red);
    box-shadow: 0 10px 24px rgba(41, 45, 51, .13);
    transform: translateY(-2px);
}

.home-index .home-hot-game-card:focus-visible {
    outline: 3px solid rgba(200, 16, 46, .2);
    outline-offset: 2px;
}

.home-index .home-hot-game-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--home-index-silver-soft);
}

.home-index .home-hot-game-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-index .home-hot-game-card__body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 13px;
}

.home-index .home-hot-game-card__name {
    display: -webkit-box;
    min-height: 2.8em;
    overflow: hidden;
    color: var(--home-index-charcoal);
    font-size: 15px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-index .home-hot-games__empty {
    padding: 18px;
    border: 1px dashed var(--home-index-silver);
    border-radius: 8px;
    background: var(--home-index-silver-soft);
    color: var(--home-index-muted);
    line-height: 1.6;
}

.home-index .home-hot-games__browse {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.home-index .home-hot-games__browse-button {
    display: inline-flex;
    min-height: 44px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--home-index-red);
    border-radius: 6px;
    background: var(--home-index-red);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.home-index .home-hot-games__browse-button:hover {
    border-color: var(--home-index-red-dark);
    background: var(--home-index-red-dark);
    color: #fff;
}

.home-index .home-hot-games__browse-button:focus-visible {
    outline: 3px solid rgba(200, 16, 46, .2);
    outline-offset: 3px;
}

.home-index-hero,
.home-index-feature,
.home-index-event {
    border: 1px solid #e1e4ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(26, 30, 36, .06);
}

.home-index-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 28px;
    min-height: 430px;
    padding: 42px;
    background: linear-gradient(135deg, #15181f 0%, #24191b 50%, #fff 50%, #fff 100%);
    color: #fff;
    overflow: hidden;
}

.home-index-kicker,
.home-index-rank-meta span,
.home-index-locked {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff0f1;
    color: #d90012;
    font-size: 12px;
    font-weight: 800;
}

.home-index-hero .home-index-kicker {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.home-index-hero h1 {
    max-width: 780px;
    margin: 18px 0 16px;
    color: inherit;
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: 0;
}

.home-index-hero p {
    max-width: 680px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.75;
}

.home-index-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-index-actions--spaced {
    margin-top: 18px;
}

.home-index-purchase-notice {
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid #f1d38a;
    border-radius: 8px;
    background: #fff8e1;
    color: #5b4a16;
    line-height: 1.65;
}

.home-index-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #cfd4dc;
    border-radius: 6px;
    background: #fff;
    color: #252a31;
    font-weight: 800;
    font-size: 14px;
}

.home-index-btn--primary {
    border-color: #e60012;
    background: #e60012;
    color: #fff;
}

.home-index-player-hero {
    align-self: stretch;
    display: grid;
}

.home-index-main-card,
.home-index-rank-card {
    position: relative;
    padding: 1px;
    border: 1px solid #e2d7da;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(230, 0, 18, .12), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
    color: #171a20;
    overflow: hidden;
}

.home-index-main-card {
    min-height: 320px;
    padding: 1px;
}

.home-index-rank-card {
    min-height: 250px;
}

.home-index-rank-card-link,
.home-index-shop-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-index-rank-card-link:hover,
.home-index-shop-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.home-index-rank-card-link:hover .home-index-rank-card,
.home-index-shop-card-link:hover {
    border-color: rgba(230, 0, 18, .38);
    box-shadow: 0 12px 28px rgba(26, 30, 36, .08);
}

.home-index-rank-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #171a20, #343944);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.home-index-rank-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-index-rank-card-image span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.home-index-rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.home-index-rank-meta span {
    min-height: 24px;
    padding: 0 8px;
}

.home-index-main-card h3,
.home-index-rank-card h3 {
    margin: 0 0 8px;
    color: #171a20;
    font-size: 20px;
    letter-spacing: 0;
}

.home-index-main-card h3 {
    font-size: 24px;
}

.home-index-main-card p,
.home-index-rank-card p {
    margin: 0;
    color: #606a78;
    font-size: 13px;
    line-height: 1.55;
}

.home-index-feature-order {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.home-index-feature {
    overflow: hidden;
}

.home-index-feature__head {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid #eef0f3;
}

.home-index-feature__head h2,
.home-index-section h2 {
    margin: 0;
    color: #15191f;
    font-size: 24px;
    letter-spacing: 0;
}

.home-index-page .home-index-feature__head h2 a,
.home-index-page .home-index-event h3 a {
    color: inherit;
    text-decoration: none;
    border-bottom: 0;
}

.home-index-page .home-index-feature__head h2 a:hover,
.home-index-page .home-index-event h3 a:hover {
    color: #e10;
    text-decoration: underline;
    text-underline-offset: .18em;
}

.home-index-page .home-index-feature__head h2 a:focus-visible,
.home-index-page .home-index-event h3 a:focus-visible {
    color: #e10;
    outline: 2px solid currentColor;
    outline-offset: 4px;
    text-decoration: underline;
    text-underline-offset: .18em;
}

.home-index-feature__head p {
    margin: 4px 0 0;
    color: #697382;
    font-size: 14px;
}

.home-index-feature__body {
    padding: 22px 24px 24px;
}

.home-index-cardwall,
.home-index-throne-status,
.home-index-shop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.home-index-status-card,
.home-index-task-item {
    min-height: 128px;
    padding: 1px;
    border: 1px solid #e4e7ed;
    border-radius: 8px;
    background: #fbfcfd;
}

.home-index-shop .home-index-status-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-index-shop-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #171a20, #343944);
}

.home-index-shop-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-index-shop-card-image.is-shop {
    background: #f1f3f6;
}

.home-index-status-card b,
.home-index-task-item b {
    display: block;
    margin-bottom: 0;
    color: #171a20;
}

.home-index-status-card span,
.home-index-task-item span {
    color: #647080;
    font-size: 13px;
    line-height: 1.55;
}

.home-index > .home-throne-status {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0 0 24px;
    overflow: hidden;
    border: 1px solid var(--home-index-silver);
    border-top: 4px solid var(--home-index-red);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(26, 30, 36, .06);
}

.home-index .home-throne-status__header {
    grid-column: 1 / -1;
    padding: 20px clamp(20px, 3vw, 30px) 0;
}

.home-index .home-throne-status__header h2 {
    margin: 0;
    color: var(--home-index-charcoal);
    font-size: clamp(24px, 3vw, 32px);
}

.home-index .home-throne-status__title-link {
    color: inherit;
    text-decoration: none;
}

.home-index .home-throne-status__title-link:hover {
    color: var(--home-index-red-dark);
}

.home-index .home-throne-status__title-link:focus-visible,
.home-index .home-throne-status__action a:focus-visible {
    outline: 3px solid rgba(200, 16, 46, .22);
    outline-offset: 4px;
}

.home-index .home-throne-status__body {
    min-width: 0;
    padding: 18px clamp(20px, 3vw, 30px) 26px;
}

.home-index .home-throne-status__stage-label {
    display: block;
    margin-bottom: 5px;
    color: var(--home-index-muted);
    font-size: 12px;
    font-weight: 700;
}

.home-index .home-throne-status__stage {
    display: block;
    color: var(--home-index-charcoal);
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.home-index .home-throne-status__identity,
.home-index .home-throne-status__description {
    margin: 10px 0 0;
    color: var(--home-index-muted);
    line-height: 1.7;
}

.home-index .home-throne-status__identity {
    color: var(--home-index-charcoal);
    font-size: 16px;
    font-weight: 800;
}

.home-index .home-throne-status[data-throne-state="guest_multilevel_event_overview"] .home-throne-status__body,
.home-index .home-throne-status[data-throne-state="guest_featured_event"] .home-throne-status__body,
.home-index .home-throne-status[data-throne-state="guest_advancement_summary"] .home-throne-status__body {
    grid-column: 1 / -1;
}

.home-index .home-throne-event-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
}

.home-index .home-throne-event-overview__heading {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--home-index-muted);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
}

.home-index .home-throne-demo-preview-note {
    display: block;
    margin: 10px 0 0;
    color: var(--home-index-muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
}

.home-index .home-throne-event-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--home-index-silver);
    border-radius: 8px;
    background: #fff;
}

.home-index .home-throne-event-card.is-planned {
    background: var(--home-index-silver-soft);
}

.home-index .home-throne-event-card__head {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.home-index .home-throne-event-card__stage,
.home-index .home-throne-event-card__status {
    color: var(--home-index-charcoal);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.home-index .home-throne-event-card__status {
    color: var(--home-index-red-dark);
    text-align: right;
}

.home-index .home-throne-event-card__summary {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-width: 0;
}

.home-index .home-throne-event-calendar {
    display: flex;
    width: 82px;
    min-height: 112px;
    box-sizing: border-box;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--home-index-silver);
    border-radius: 8px;
    background: #fff;
    color: var(--home-index-charcoal);
    text-align: center;
    text-decoration: none;
}

.home-index .home-throne-event-calendar__month {
    display: block;
    padding: 5px 4px;
    background: var(--home-index-red);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.home-index .home-throne-event-calendar__day {
    display: block;
    padding-top: 7px;
    font-size: 27px;
    line-height: 1;
}

.home-index .home-throne-event-calendar__weekday {
    display: block;
    margin-top: 5px;
    color: var(--home-index-muted);
    font-size: 11px;
    line-height: 1.3;
}

.home-index .home-throne-event-calendar__time {
    display: block;
    margin-top: auto;
    padding: 5px 4px;
    border-top: 1px solid var(--home-index-silver);
    font-size: 12px;
    font-weight: 900;
}

.home-index .home-throne-event-calendar.is-tba .home-throne-event-calendar__month {
    background: var(--home-index-charcoal);
}

.home-index .home-throne-event-calendar.is-tba .home-throne-event-calendar__day {
    padding-top: 12px;
    font-size: 20px;
}

.home-index .home-throne-event-card__main {
    min-width: 0;
}

.home-index .home-throne-event-card__main h3 {
    margin: 0;
    color: var(--home-index-charcoal);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.home-index .home-throne-event-card__main h3 a {
    color: inherit;
    text-decoration: none;
}

.home-index .home-throne-event-card__identity,
.home-index .home-throne-event-card__rule,
.home-index .home-throne-event-card__round {
    margin: 7px 0 0;
    line-height: 1.55;
}

.home-index .home-throne-event-card__identity {
    color: var(--home-index-charcoal);
    font-size: 13px;
    font-weight: 800;
}

.home-index .home-throne-event-card__rule,
.home-index .home-throne-event-card__round {
    color: var(--home-index-muted);
    font-size: 13px;
}

.home-index .home-throne-event-card__list-title {
    margin-top: 18px;
    color: var(--home-index-charcoal);
    font-size: 13px;
    font-weight: 900;
}

.home-index .home-throne-event-card__list {
    display: grid;
    margin: 7px 0 0;
    padding: 0;
    list-style: none;
}

.home-index .home-throne-event-card__row {
    display: grid;
    grid-template-columns: minmax(44px, auto) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 8px 0;
    border-top: 1px solid var(--home-index-silver);
}

.home-index .home-throne-event-card__row.has-no-rank {
    grid-template-columns: minmax(0, 1fr);
}

.home-index .home-throne-event-card__rank {
    color: var(--home-index-red-dark);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.home-index .home-throne-event-card__object {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    color: var(--home-index-charcoal);
    text-decoration: none;
}

.home-index .home-throne-event-card__logo {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid var(--home-index-silver);
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}

.home-index .home-throne-event-card__logo.is-team {
    border-radius: 6px;
}

.home-index .home-throne-event-card__name {
    min-width: 0;
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-index .home-throne-event-card__action {
    display: inline-flex;
    min-height: 44px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 16px;
    padding: 0 18px;
    border: 0;
    color: var(--home-index-red-dark);
    font-weight: 900;
    text-decoration: none;
}

.home-index .home-throne-event-card__action::after {
    content: " →";
    margin-left: 5px;
}

.home-index .home-throne-event-card a:hover {
    color: var(--home-index-red-dark);
}

.home-index .home-throne-event-card a:focus-visible {
    outline: 3px solid rgba(200, 16, 46, .22);
    outline-offset: 3px;
}

.home-index .home-throne-featured-event {
    display: flex;
    min-width: 0;
    max-width: 760px;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--home-index-silver);
    border-radius: 8px;
    background: var(--home-index-silver-soft);
}

.home-index .home-throne-featured-event__status {
    color: var(--home-index-red-dark);
    font-size: 13px;
    font-weight: 900;
}

.home-index .home-throne-featured-event__title {
    margin: 7px 0 0;
    color: var(--home-index-charcoal);
    font-size: clamp(20px, 2.5vw, 27px);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.home-index .home-throne-featured-event__scope,
.home-index .home-throne-featured-event__meta {
    margin: 8px 0 0;
    color: var(--home-index-muted);
    line-height: 1.55;
}

.home-index .home-throne-featured-event__scope {
    color: var(--home-index-charcoal);
    font-weight: 800;
}

.home-index .home-throne-featured-event__list-title {
    margin-top: 18px;
    color: var(--home-index-charcoal);
    font-size: 13px;
    font-weight: 900;
}

.home-index .home-throne-featured-event__list {
    display: grid;
    gap: 0;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.home-index .home-throne-featured-event__row {
    display: grid;
    grid-template-columns: minmax(52px, auto) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 9px 0;
    border-top: 1px solid var(--home-index-silver);
}

.home-index .home-throne-featured-event__row.has-no-rank {
    grid-template-columns: minmax(0, 1fr);
}

.home-index .home-throne-featured-event__rank {
    color: var(--home-index-red-dark);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.home-index .home-throne-featured-event__identity {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.home-index .home-throne-featured-event__logo {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 1px solid var(--home-index-silver);
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}

.home-index .home-throne-featured-event__logo.is-team {
    border-radius: 6px;
}

.home-index .home-throne-featured-event__name {
    min-width: 0;
    overflow: hidden;
    color: var(--home-index-charcoal);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-index .home-throne-featured-event__action {
    display: inline-flex;
    min-height: 44px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 16px;
    padding: 0 18px;
    border: 1px solid var(--home-index-red);
    border-radius: 6px;
    background: var(--home-index-red);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.home-index .home-throne-featured-event__action:hover {
    border-color: var(--home-index-red-dark);
    background: var(--home-index-red-dark);
    color: #fff;
}

.home-index .home-throne-featured-event__action:focus-visible {
    outline: 3px solid rgba(200, 16, 46, .22);
    outline-offset: 4px;
}

.home-index .home-throne-rankings {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-index .home-throne-ranking-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--home-index-silver);
    border-radius: 8px;
    background: var(--home-index-silver-soft);
}

.home-index .home-throne-ranking-card__period {
    color: var(--home-index-red-dark);
    font-size: 13px;
    font-weight: 900;
}

.home-index .home-throne-ranking-card__scope {
    margin: 7px 0 0;
    color: var(--home-index-charcoal);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.home-index .home-throne-ranking-card__quota {
    margin: 8px 0 0;
    color: var(--home-index-muted);
    font-size: 13px;
    font-weight: 800;
}

.home-index .home-throne-ranking-card__data-period {
    margin: 6px 0 0;
    color: var(--home-index-muted);
    font-size: 12px;
    font-weight: 700;
}

.home-index .home-throne-ranking-card__list {
    display: grid;
    gap: 0;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.home-index .home-throne-ranking-card__row {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 9px 0;
    border-top: 1px solid var(--home-index-silver);
}

.home-index .home-throne-ranking-card__rank {
    color: var(--home-index-red-dark);
    font-weight: 900;
    text-align: center;
}

.home-index .home-throne-ranking-card__name {
    min-width: 0;
    overflow: hidden;
    color: var(--home-index-charcoal);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-index .home-throne-ranking-card__score {
    color: var(--home-index-charcoal);
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
}

.home-index .home-throne-ranking-card__status {
    margin-top: 14px;
    color: var(--home-index-muted);
    font-size: 13px;
    font-weight: 800;
}

.home-index .home-throne-ranking-card__action {
    display: inline-flex;
    min-height: 44px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 14px;
    padding: 0 18px;
    border: 1px solid var(--home-index-red);
    border-radius: 6px;
    background: var(--home-index-red);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.home-index .home-throne-ranking-card__action:hover {
    border-color: var(--home-index-red-dark);
    background: var(--home-index-red-dark);
    color: #fff;
}

.home-index .home-throne-ranking-card__action:focus-visible {
    outline: 3px solid rgba(200, 16, 46, .22);
    outline-offset: 4px;
}

.home-index .home-throne-status__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 0;
}

.home-index .home-throne-status__metric {
    min-width: 150px;
    padding: 12px 14px;
    border: 1px solid var(--home-index-silver);
    border-radius: 7px;
    background: var(--home-index-silver-soft);
}

.home-index .home-throne-status__metric dt {
    color: var(--home-index-muted);
    font-size: 12px;
}

.home-index .home-throne-status__metric dd {
    margin: 5px 0 0;
    color: var(--home-index-charcoal);
    font-size: 20px;
    font-weight: 900;
}

.home-index .home-throne-status__path {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 24px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.home-index .home-throne-status__path-item {
    position: relative;
    color: var(--home-index-charcoal);
    font-size: 13px;
    font-weight: 800;
}

.home-index .home-throne-status__path-item:not(:last-child)::after {
    content: "→";
    position: absolute;
    left: calc(100% + 8px);
    color: var(--home-index-muted);
}

.home-index .home-throne-status__action {
    display: flex;
    align-items: flex-end;
    padding: 18px clamp(20px, 3vw, 30px) 26px 0;
}

.home-index .home-throne-status__action a {
    display: inline-flex;
    min-height: 44px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--home-index-red);
    border-radius: 6px;
    background: var(--home-index-red);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.home-index .home-throne-status__action a:hover {
    border-color: var(--home-index-red-dark);
    background: var(--home-index-red-dark);
    color: #fff;
}

.home-index .home-checkin-card {
    border-color: var(--home-index-silver);
    border-left: 4px solid var(--home-index-red);
    background: #fff;
}

.home-index .home-checkin-card.is-guest {
    background: var(--home-index-silver-soft);
}

.home-index .home-checkin-card.is-login.is-unchecked {
    border-color: var(--home-index-silver);
    border-left-color: var(--home-index-red);
    background: #fff;
}

.home-index .home-checkin-card.is-login.is-checked {
    border-color: var(--home-index-silver);
    border-left-color: var(--home-index-charcoal);
    background: var(--home-index-silver-soft);
}

.home-index .home-checkin-card.has-reward {
    border-color: var(--home-index-red);
}

.home-index .home-checkin-card.no-reward .home-checkin-metric--reward .home-checkin-metric-value {
    color: var(--home-index-muted);
}

.home-index .home-checkin-card.is-fallback {
    background: #fff;
}

.home-index .home-checkin-card .home-card-header h2 {
    margin: 0;
    padding: 0;
    border-left: 0;
    color: var(--home-index-charcoal);
}

.home-index .home-checkin-summary {
    margin-bottom: 12px;
    line-height: 1.6;
}

.home-index .home-checkin-status {
    color: var(--home-index-charcoal);
    font-size: 16px;
    font-weight: 800;
}

.home-index .home-checkin-desc {
    margin-top: 4px;
    color: var(--home-index-muted);
    font-size: 13px;
}

.home-index .home-checkin-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-index .home-checkin-metric {
    min-height: 118px;
    padding: 14px;
    border: 1px solid var(--home-index-silver);
    border-radius: 8px;
    background: #fff;
}

.home-index .home-checkin-metric-label,
.home-index .home-checkin-metric-desc {
    display: block;
    color: var(--home-index-muted);
    font-size: 13px;
    line-height: 1.55;
}

.home-index .home-checkin-metric-value {
    display: block;
    margin: 7px 0;
    color: var(--home-index-red-dark);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.home-index .home-checkin-card.is-unchecked .home-checkin-metric--status .home-checkin-metric-value {
    color: var(--home-index-red-dark);
}

.home-index .home-checkin-card.is-checked .home-checkin-metric--status .home-checkin-metric-value {
    color: var(--home-index-charcoal);
}

.home-index .home-checkin-card.has-reward .home-checkin-metric--reward {
    border-color: rgba(230, 0, 18, .35);
    background: #fff6f6;
}

.home-index .home-checkin-card.has-reward .home-checkin-metric--reward .home-checkin-metric-value {
    color: var(--home-index-red-dark);
}

.home-index .home-checkin-reward-value {
    color: inherit;
}

.home-index .home-daily-task-card {
    border-color: var(--home-index-silver);
    border-left: 4px solid var(--home-index-red);
    background: #fff;
}

.home-index .home-daily-task-card.has-unfinished {
    border-color: var(--home-index-silver);
    border-left-color: var(--home-index-charcoal);
    background: var(--home-index-silver-soft);
}

.home-index .home-daily-task-card.has-claimable {
    border-color: var(--home-index-red);
}

.home-index .home-daily-task-card.is-all-done {
    border-color: var(--home-index-silver);
    border-left-color: var(--home-index-charcoal);
    background: var(--home-index-silver-soft);
}

.home-index .home-daily-task-card.is-empty,
.home-index .home-daily-task-card.is-fallback,
.home-index .home-daily-task-card.is-guest {
    background: var(--home-index-silver-soft);
}

.home-index .home-daily-task-card .home-card-header h2 {
    margin: 0;
    padding: 0;
    border-left: 0;
    color: var(--home-index-charcoal);
}

.home-index .home-task-summary {
    line-height: 1.6;
}

.home-index .home-task-status {
    color: var(--home-index-charcoal);
    font-size: 16px;
    font-weight: 800;
}

.home-index .home-task-desc {
    margin-top: 4px;
    color: var(--home-index-muted);
    font-size: 13px;
}

.home-index .home-task-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.home-index .home-daily-task-card.is-guest .home-task-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-index .home-task-metric {
    min-height: 82px;
    padding: 14px;
    border: 1px solid var(--home-index-silver);
    border-radius: 8px;
    background: #fff;
}

.home-index .home-task-metric-label {
    display: block;
    color: var(--home-index-muted);
    font-size: 13px;
    line-height: 1.55;
}

.home-index .home-task-metric-value {
    display: block;
    margin-top: 7px;
    color: var(--home-index-charcoal);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.home-index .home-daily-task-card.has-unfinished .home-task-metric--unfinished .home-task-metric-value {
    color: var(--home-index-charcoal);
}

.home-index .home-daily-task-card.has-claimable .home-task-metric--claimable .home-task-metric-value {
    color: var(--home-index-red-dark);
}

.home-index .home-task-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.home-index .home-task-item {
    padding: 12px;
    border: 1px solid var(--home-index-silver);
    border-radius: 8px;
    background: #fff;
}

.home-index .home-task-item-title {
    color: var(--home-index-charcoal);
    font-weight: 800;
}

.home-index .home-task-item-meta {
    margin-top: 4px;
    color: var(--home-index-muted);
    font-size: 13px;
    line-height: 1.55;
}

.home-index-empty {
    padding: 24px;
    border: 1px dashed #cfd5dd;
    border-radius: 8px;
    color: #687181;
    background: #fbfcfd;
}

.home-index-section {
    margin-top: 22px;
}

.home-index-section h2 {
    margin-bottom: 14px;
}

.home-index-event {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
    gap: 22px;
    padding: 28px;
}

.home-index-event h3 {
    margin: 12px 0 8px;
    color: #171a20;
    font-size: 24px;
    letter-spacing: 0;
}

.home-index-event p {
    color: #687181;
    font-size: 14px;
    line-height: 1.65;
}

.home-index-event-card {
    align-self: end;
    padding: 1px;
    border: 1px solid #eceff3;
    border-radius: 8px;
    background: #fff;
}

.home-index-event-card img {
    display: block;
    width: 100%;
    height: 148px;
    object-fit: cover;
    border-radius: 8px;
    background: #f2f3f5;
}

.home-index-event-card h3 {
    font-size: 20px;
}

@media (max-width: 860px) {
    .home-index {
        width: 100%;
        margin:0em;
    }

    .home-index-hero,
    .home-index-feature__head,
    .home-index-event {
        grid-template-columns: 1fr;
    }

    .home-index-hero {
        padding: 28px 20px;
    }

    .home-index-hero h1 {
        font-size: 32px;
    }

    .home-index-cardwall,
    .home-index-throne-status,
    .home-index-shop {
        grid-template-columns: 1fr;
    }

    .home-index .home-hot-games__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-index > .home-throne-status {
        grid-template-columns: 1fr;
    }

    .home-index .home-throne-rankings {
        grid-template-columns: 1fr;
    }

    .home-index .home-throne-event-overview {
        grid-template-columns: 1fr;
    }

    .home-index .home-throne-status__action {
        padding: 0 20px 24px;
    }

    .home-index .home-throne-status__action a {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .home-index .home-hot-games {
        padding: 18px 14px;
    }

    .home-index .home-hot-games__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-index .home-throne-status__metrics,
    .home-index .home-checkin-metrics,
    .home-index .home-task-metrics,
    .home-index .home-daily-task-card.is-guest .home-task-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 420px) {
    .home-index .home-hot-game-card__body {
        padding: 10px;
    }

    .home-index .home-hot-games__browse,
    .home-index .home-hot-games__browse-button {
        width: 100%;
    }

    .home-index .home-throne-status__metrics {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-index .home-throne-event-card {
        padding: 15px;
    }

    .home-index .home-throne-event-card__summary {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }

    .home-index .home-throne-event-calendar {
        width: 72px;
    }

    .home-index .home-throne-event-card__action {
        width: 100%;
    }

    .home-index .home-throne-ranking-card {
        padding: 15px;
    }

    .home-index .home-throne-featured-event {
        padding: 15px;
    }

    .home-index .home-throne-featured-event__action {
        width: 100%;
    }

    .home-index .home-throne-ranking-card__row {
        grid-template-columns: 24px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .home-index .home-throne-ranking-card__action {
        width: 100%;
    }

    .home-index .home-throne-status__path {
        display: grid;
        gap: 18px;
    }

    .home-index .home-throne-status__path-item:not(:last-child)::after {
        content: "↓";
        top: calc(100% + 2px);
        left: 0;
    }

    .home-index .home-checkin-metrics,
    .home-index .home-task-metrics,
    .home-index .home-daily-task-card.is-guest .home-task-metrics {
        grid-template-columns: 1fr;
    }
}
