:root {
    color-scheme: light;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Noto Sans CJK SC", "Source Han Sans SC", Arial, sans-serif;
    background: #eef3f5;
    color: #17191f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background:
        linear-gradient(180deg, #f8fbfc 0, #eef5f4 280px, #eef3f5 100%);
}

body.vote-modal-open {
    overflow: hidden;
}

button {
    font: inherit;
}

.vote-loading,
.vote-error {
    display: grid;
    min-height: 100vh;
    place-items: center;
    color: #586269;
    font-size: 15px;
}

.vote-page {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 56px;
}

.vote-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0 22px;
    border-bottom: 1px solid #d9e2e6;
}

.vote-header > div:first-child {
    max-width: 680px;
}

.vote-kicker {
    margin: 0 0 8px;
    color: #be4b3f;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.vote-header h1 {
    margin: 0;
    color: #17191f;
    font-size: 40px;
    line-height: 1.15;
}

.vote-header p:last-child {
    max-width: 620px;
    margin: 10px 0 0;
    color: #586269;
    font-size: 15px;
    line-height: 1.7;
}

.vote-header-badge {
    display: inline-flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #d9e2e6;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: none;
}

.vote-header-badge span {
    display: inline;
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.vote-header-badge strong {
    display: block;
    overflow: hidden;
    max-width: 180px;
    margin-top: 0;
    color: #17191f;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vote-header-side {
    display: flex;
    min-width: 0;
    max-width: none;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
    white-space: nowrap;
}

.vote-login-button,
.vote-user-card button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: #17191f;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
}

.vote-login-button:hover,
.vote-user-card button:hover {
    background: #0f766e;
}

.vote-login-button.is-logged-in {
    background: #0f766e;
    max-width: 220px;
}

.vote-login-button span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vote-login-button.is-logged-in:hover {
    background: #0b5f59;
}

.vote-user-card {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

.vote-user-card[hidden],
.vote-login-button[hidden] {
    display: none;
}

.vote-user-card span {
    display: none;
}

.vote-user-card strong {
    display: none;
}

.vote-user-card button {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #d9e2e6;
    background: #f2f3f4;
    color: #253038;
}

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

.vote-stat {
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid #d9e2e6;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
}

.vote-stat span {
    display: block;
    color: #586269;
    font-size: 13px;
}

.vote-stat strong {
    display: block;
    overflow: hidden;
    margin-top: 6px;
    color: #17191f;
    font-size: 24px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vote-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 22px 0 18px;
    color: #586269;
}

.vote-toolbar strong {
    margin-right: 10px;
    color: #17191f;
    font-size: 20px;
}

#voteRuleText {
    display: inline-block;
    margin-left: 10px;
    color: #0f766e;
    font-size: 13px;
    font-weight: 800;
}

.vote-tabs {
    display: inline-flex;
    gap: 6px;
    padding: 4px;
    border: 1px solid #d9e2e6;
    border-radius: 8px;
    background: #ffffff;
}

.vote-tab {
    min-width: 58px;
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #586269;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.vote-tab.is-active {
    background: #0f766e;
    color: #ffffff;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vote-card {
    overflow: hidden;
    border: 1px solid #d9e2e6;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgb(23 25 31 / 7%);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vote-card:hover {
    border-color: #b9c8ce;
    box-shadow: 0 18px 42px rgb(23 25 31 / 10%);
    transform: translateY(-2px);
}

.vote-cover-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: #e8eef0;
    cursor: pointer;
}

.vote-cover {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.vote-cover-button::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 42%, rgb(0 0 0 / 36%));
    opacity: .76;
    transition: opacity .2s ease;
}

.vote-cover-button:hover::after {
    opacity: 1;
}

.vote-rank {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgb(255 255 255 / 92%);
    color: #be4b3f;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgb(0 0 0 / 14%);
}

.vote-play-mark {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 8px 18px rgb(0 0 0 / 18%);
}

.vote-play-mark::before {
    position: absolute;
    top: 50%;
    left: 52%;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #0f766e;
    content: "";
    transform: translate(-50%, -50%);
}

.vote-card-body {
    padding: 16px;
}

.vote-card-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
}

.vote-card-title-row h2 {
    overflow: hidden;
    margin: 0;
    color: #17191f;
    font-size: 18px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vote-card-title-row span {
    color: #be4b3f;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.vote-card-body p {
    margin: 8px 0 14px;
    color: #586269;
    font-size: 14px;
}

.vote-intro-wrap {
    margin: 8px 0 10px;
}

.vote-intro {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 10px !important;
    color: #3f4a50 !important;
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-word;
}

.vote-intro-wrap.is-expanded .vote-intro {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.vote-intro-toggle {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0f766e;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.vote-intro-toggle[hidden] {
    display: none;
}

.vote-author {
    margin-top: 0 !important;
}

.vote-action {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: #17191f;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    transition: background .18s ease;
}

.vote-action:hover {
    background: #0f766e;
}

.vote-action:disabled {
    cursor: not-allowed;
}

.vote-action.is-voted,
.vote-action.is-voted:hover {
    background: #be4b3f;
}

.vote-action.is-disabled,
.vote-action.is-disabled:hover {
    background: #8a949b;
}

.vote-action.is-loading,
.vote-action.is-loading:hover {
    background: #586269;
}

.vote-empty {
    padding: 64px 20px;
    border: 1px dashed #cbd5da;
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
}

.vote-empty h2 {
    margin: 0;
    font-size: 22px;
}

.vote-empty p {
    margin: 10px 0 0;
    color: #586269;
    font-size: 14px;
}

.vote-load-more {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    color: #586269;
    font-size: 14px;
}

.vote-load-more span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid #d9e2e6;
    border-radius: 999px;
    background: #ffffff;
}

.vote-load-more.is-loading span::before {
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border: 2px solid #c8d3d8;
    border-top-color: #0f766e;
    border-radius: 50%;
    content: "";
    animation: vote-spin .8s linear infinite;
}

.vote-load-more.is-finished {
    color: #8a949b;
}

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

.vote-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.vote-video-modal[hidden] {
    display: none;
}

.vote-video-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgb(12 15 20 / 72%);
    cursor: pointer;
}

.vote-video-dialog {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: min(920px, 100%);
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 8px;
    background: #111318;
    box-shadow: 0 28px 80px rgb(0 0 0 / 36%);
}

.vote-video-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    color: #ffffff;
}

.vote-video-header span {
    display: block;
    color: rgb(255 255 255 / 62%);
    font-size: 12px;
}

.vote-video-header strong {
    display: block;
    overflow: hidden;
    max-width: 720px;
    margin-top: 3px;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vote-video-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 10%);
    color: #ffffff;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.vote-video-close:hover {
    background: rgb(255 255 255 / 18%);
}

.vote-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.vote-player .dplayer {
    height: 100%;
}

@media (max-width: 960px) {
    .vote-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .vote-page {
        width: min(100% - 24px, 1180px);
        padding-top: 18px;
        padding-bottom: 42px;
    }

    .vote-header,
    .vote-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .vote-header h1 {
        font-size: 30px;
    }

    .vote-header-side,
    .vote-header-badge {
        width: 100%;
        min-width: 0;
    }

    .vote-header-side {
        justify-content: stretch;
        flex-wrap: wrap;
        white-space: normal;
    }

    .vote-login-button,
    .vote-user-card,
    .vote-user-card button {
        width: 100%;
    }

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

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

    .vote-video-modal {
        padding: 12px;
    }

    .vote-video-header strong {
        max-width: 240px;
    }
}

@media (max-width: 520px) {
    .vote-page {
        width: 100%;
        padding: 14px 12px 40px;
    }

    .vote-header {
        gap: 16px;
        padding: 18px 0 16px;
    }

    .vote-header h1 {
        font-size: 26px;
    }

    .vote-header p:last-child {
        font-size: 14px;
    }

    .vote-stats {
        gap: 10px;
        margin: 16px 0;
    }

    .vote-stat {
        min-height: 78px;
        padding: 14px;
    }

    .vote-stat strong {
        font-size: 24px;
    }

    .vote-toolbar {
        margin: 18px 0 14px;
    }

    .vote-toolbar > div:first-child {
        display: grid;
        gap: 6px;
    }

    .vote-toolbar strong,
    #voteRuleText {
        margin: 0;
    }

    .vote-tabs {
        display: flex;
        width: 100%;
        overflow-x: auto;
    }

    .vote-tab {
        flex: 1 0 auto;
    }

    .vote-grid {
        gap: 14px;
    }

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

    .vote-card-body {
        padding: 14px;
    }

    .vote-card-title-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .vote-card-title-row h2 {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        word-break: break-word;
    }

    .vote-card-title-row span {
        white-space: normal;
    }

    .vote-action {
        min-height: 44px;
    }

    .vote-video-modal {
        padding: 10px;
    }

    .vote-video-dialog {
        width: 100%;
    }

    .vote-video-header {
        padding: 12px;
    }

    .vote-video-header strong {
        max-width: min(64vw, 260px);
    }

    .vote-video-close {
        flex: 0 0 auto;
    }
}

/* Design refresh */
body {
    background: #f2f5fb;
}

.vote-shell {
    min-height: 100vh;
    background: #f2f5fb;
}

.vote-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    height: 78px;
    padding: 0 max(32px, calc((100vw - 1320px) / 2));
    background: rgb(255 255 255 / 94%);
    border-bottom: 1px solid rgb(225 229 238 / 76%);
    backdrop-filter: blur(18px);
}

.vote-mobile-back {
    display: none;
}

.vote-brand {
    display: inline-flex;
    align-items: center;
    min-width: 300px;
    text-decoration: none;
}

.vote-brand img {
    display: block;
    width: 300px;
    height: auto;
    object-fit: contain;
}

.vote-title-mini {
    display: grid;
    gap: 4px;
    padding-left: 18px;
    border-left: 1px solid #dde2ee;
}

.vote-title-mini strong {
    color: #1c2333;
    font-size: 16px;
    line-height: 1.2;
}

.vote-title-mini strong span {
    display: inline-flex;
    margin-right: 6px;
    padding: 2px 8px;
    border-radius: 6px;
    background: #786bff;
    color: #ffffff;
    font-size: 12px;
}

.vote-title-mini em {
    color: #7b8496;
    font-size: 13px;
    font-style: normal;
}

.vote-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.vote-nav a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: #596276;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.vote-nav a.is-active,
.vote-nav a:hover {
    background: #eef1ff;
    color: #6258ff;
}

.vote-shell .vote-header-side {
    max-width: 420px;
}

.vote-shell .vote-login-button {
    min-width: 144px;
    min-height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6b8dff, #8357f6);
    box-shadow: 0 12px 24px rgb(99 91 255 / 22%);
}

.vote-shell .vote-login-button.is-logged-in {
    background: #eef1ff;
    color: #6258ff;
    box-shadow: none;
}

.vote-shell .vote-user-card button {
    border: 0;
    background: #f3f5fa;
}

.vote-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
    align-items: center;
    min-height: 380px;
    padding: 58px max(32px, calc((100vw - 1320px) / 2)) 70px;
    background:
        radial-gradient(circle at 92% 10%, rgb(255 255 255 / 18%) 0 170px, transparent 172px),
        radial-gradient(circle at 50% 96%, rgb(255 255 255 / 16%) 0 92px, transparent 94px),
        linear-gradient(135deg, #6e8cff 0%, #805bf8 58%, #b384f0 100%);
    color: #ffffff;
}

.vote-hero::before,
.vote-hero::after {
    position: absolute;
    border-radius: 50%;
    background: rgb(255 255 255 / 13%);
    content: "";
}

.vote-hero::before {
    right: -60px;
    top: -90px;
    width: 280px;
    height: 280px;
}

.vote-hero::after {
    left: 46%;
    bottom: -90px;
    width: 190px;
    height: 190px;
}

.vote-hero-copy,
.vote-ticket-panel {
    position: relative;
    z-index: 1;
}

.vote-season {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid rgb(255 231 176 / 78%);
    border-radius: 8px;
    background: rgb(255 255 255 / 16%);
    color: #fff1c2;
    font-size: 14px;
    font-weight: 900;
}

.vote-hero h1 {
    margin: 22px 0 12px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: 0;
}

.vote-hero p {
    margin: 0;
    color: rgb(255 255 255 / 88%);
    font-size: 18px;
    font-weight: 700;
}

.vote-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.vote-hero-tags span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgb(255 255 255 / 16%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.vote-hero-tags i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff7cf;
    box-shadow: 0 0 0 5px rgb(255 247 207 / 18%);
}

.vote-hero-stats {
    display: flex;
    gap: 42px;
    margin-top: 34px;
}

.vote-hero-stats strong {
    display: block;
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
}

.vote-hero-stats span {
    display: block;
    margin-top: 8px;
    color: rgb(255 255 255 / 78%);
    font-size: 14px;
    font-weight: 800;
}

.vote-ticket-panel {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 24px;
    background: rgb(255 255 255 / 14%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%);
    backdrop-filter: blur(16px);
}

.vote-countdown > span,
.vote-ticket-summary span {
    display: block;
    color: rgb(255 255 255 / 76%);
    font-size: 14px;
    font-weight: 800;
}

.vote-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.vote-timer b {
    display: grid;
    min-height: 68px;
    place-items: center;
    border-radius: 10px;
    background: rgb(80 68 174 / 42%);
    color: #ffffff;
    font-size: 28px;
}

.vote-timer em {
    display: block;
    margin-top: -8px;
    color: rgb(255 255 255 / 68%);
    font-size: 12px;
    font-style: normal;
}

.vote-ticket-summary {
    display: grid;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgb(255 255 255 / 20%);
}

.vote-ticket-summary strong {
    color: #ffffff;
    font-size: 16px;
}

.vote-ticket-summary small {
    display: block;
    margin-top: 4px;
    color: rgb(255 255 255 / 62%);
    font-size: 12px;
    font-weight: 700;
}

.vote-ticket-summary i {
    font-style: normal;
}

.vote-ticket-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.vote-ticket-boxes span {
    display: grid;
    min-height: 54px;
    place-items: center;
    border-radius: 10px;
    background: #ffe998;
    color: #925d00;
    font-size: 20px;
    font-weight: 900;
}

.vote-ticket-boxes span.is-used {
    background: rgb(94 82 185 / 70%);
    color: #ffffff;
}

.vote-list-panel {
    width: min(1320px, calc(100% - 48px));
    margin: -32px auto 0;
}

.vote-shell .vote-toolbar {
    position: relative;
    z-index: 5;
    margin: 0 0 24px;
    padding: 16px 22px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgb(29 36 64 / 8%);
}

.vote-shell .vote-toolbar strong {
    font-size: 17px;
}

.vote-shell #voteRuleText {
    color: #7d6dff;
}

.vote-shell .vote-tabs {
    gap: 8px;
    padding: 5px;
    border: 0;
    border-radius: 14px;
    background: #f1f3f8;
}

.vote-shell .vote-tab {
    min-width: 92px;
    min-height: 40px;
    border-radius: 11px;
    color: #687184;
}

.vote-shell .vote-tab.is-active {
    background: #ffffff;
    color: #1c2333;
    box-shadow: 0 4px 14px rgb(44 55 92 / 8%);
}

.vote-shell .vote-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.vote-shell .vote-card {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgb(43 53 88 / 9%);
}

.vote-shell .vote-card:hover {
    box-shadow: 0 24px 56px rgb(43 53 88 / 14%);
    transform: translateY(-3px);
}

.vote-shell .vote-cover {
    aspect-ratio: 16 / 9.5;
}

.vote-shell .vote-cover-button::after {
    background: linear-gradient(180deg, rgb(0 0 0 / 2%) 20%, rgb(0 0 0 / 34%));
}

.vote-code {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgb(34 42 68 / 70%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.vote-shell .vote-play-mark {
    right: 14px;
    bottom: 14px;
    display: grid;
    place-items: center;
    background: rgb(255 255 255 / 92%);
}

.vote-shell .vote-play-mark::before {
    display: none;
}

.vote-shell .vote-play-mark i {
    color: #705eff;
    font-size: 24px;
    line-height: 1;
}

.vote-shell .vote-card-body {
    padding: 16px;
}

.vote-shell .vote-card-title-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
}

.vote-shell .vote-card-title-row h2 {
    color: #171c2a;
    font-size: 17px;
    font-weight: 900;
}

.vote-tag,
.vote-top-pill {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    background: #eef1ff;
    color: #635bff;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.vote-top-pill {
    background: #fff0bf;
    color: #b45309;
}

.vote-top-pill.is-hidden {
    display: none;
}

.vote-author-row {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    color: #8a94a6;
    font-size: 13px;
}

.vote-avatar {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7b8b, #ffd166);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.vote-author-row strong {
    color: #7a8395;
}

.vote-author-row em,
.vote-author-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: normal;
}

.vote-progress {
    margin-top: 16px;
}

.vote-progress > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #7a8395;
    font-size: 12px;
    font-weight: 800;
}

.vote-progress strong {
    color: #6f70ff;
    font-size: 13px;
}

.vote-progress i {
    display: block;
    overflow: hidden;
    height: 6px;
    margin-top: 9px;
    border-radius: 999px;
    background: #eef1f7;
}

.vote-progress b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #6d8cff, #8357f6);
}

.vote-shell .vote-intro-wrap {
    margin: 12px 0 14px;
}

.vote-shell .vote-intro {
    -webkit-line-clamp: 2;
}

.vote-shell .vote-action {
    min-height: 44px;
    gap: 7px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6b8dff, #8357f6);
    box-shadow: 0 10px 22px rgb(99 91 255 / 22%);
}

.vote-shell .vote-action:hover {
    background: linear-gradient(135deg, #5f7dff, #7547ec);
}

.vote-shell .vote-action.is-voted,
.vote-shell .vote-action.is-voted:hover,
.vote-shell .vote-action.is-disabled,
.vote-shell .vote-action.is-disabled:hover {
    background: #f0f3f9;
    color: #a3adbf;
    box-shadow: none;
}

.vote-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    margin-top: 64px;
    padding: 34px max(32px, calc((100vw - 1320px) / 2));
    border-top: 1px solid #e5e9f1;
    background: #ffffff;
}

.vote-footer-rules h4 {
    margin: 0 0 12px;
    color: #1c2333;
}

.vote-footer-rules p {
    margin: 6px 0;
    color: #687184;
    font-size: 13px;
}

@media (max-width: 1120px) {
    .vote-topbar {
        grid-template-columns: auto 1fr auto;
    }

    .vote-title-mini {
        display: none;
    }

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

    .vote-ticket-panel {
        max-width: 560px;
    }

    .vote-shell .vote-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .vote-shell {
        background: linear-gradient(180deg, #6b82ff 0 520px, #f2f5fb 520px 100%);
    }

    .vote-topbar {
        position: relative;
        grid-template-columns: 46px auto minmax(0, 1fr);
        height: auto;
        gap: 12px;
        padding: 32px 22px 8px;
        border-bottom: 0;
        background: transparent;
        color: #ffffff;
        backdrop-filter: none;
    }

    .vote-mobile-back {
        display: grid;
        width: 46px;
        height: 46px;
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: rgb(255 255 255 / 18%);
        color: #ffffff;
        cursor: pointer;
    }

    .vote-mobile-back i {
        font-size: 30px;
        line-height: 1;
    }

    .vote-brand img {
        width: 176px;
    }

    .vote-title-mini {
        display: grid;
        gap: 3px;
        padding-left: 0;
        border-left: 0;
    }

    .vote-title-mini strong {
        color: #ffffff;
        font-size: 17px;
        line-height: 1.15;
    }

    .vote-title-mini strong span {
        display: none;
    }

    .vote-title-mini em {
        color: rgb(255 255 255 / 84%);
        font-size: 13px;
    }

    .vote-nav,
    .vote-shell .vote-header-side {
        display: none;
    }

    .vote-hero {
        min-height: 0;
        padding: 18px 28px 82px;
        background:
            radial-gradient(circle at 96% 6%, rgb(255 255 255 / 14%) 0 120px, transparent 122px),
            radial-gradient(circle at 52% 100%, rgb(255 255 255 / 12%) 0 80px, transparent 82px),
            linear-gradient(180deg, #6b82ff 0%, #765dff 100%);
    }

    .vote-hero-copy {
        display: grid;
        gap: 16px;
    }

    .vote-season {
        justify-self: start;
        margin-top: 4px;
    }

    .vote-hero h1 {
        margin: 0;
        font-size: 40px;
    }

    .vote-hero p {
        font-size: 16px;
    }

    .vote-hero-tags {
        order: -1;
        margin-top: 0;
    }

    .vote-hero-tags span:not(:first-child) {
        display: none;
    }

    .vote-hero-stats {
        gap: 32px;
        margin-top: 0;
    }

    .vote-ticket-panel {
        padding: 16px 18px;
        border-radius: 20px;
        background: #ffffff;
        color: #1c2333;
        box-shadow: 0 18px 42px rgb(34 44 89 / 13%);
    }

    .vote-countdown {
        display: none;
    }

    .vote-ticket-summary span {
        color: #7a8395;
    }

    .vote-ticket-summary {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 14px;
        padding-top: 0;
        border-top: 0;
    }

    .vote-ticket-summary > div:first-child {
        order: 2;
        min-width: 0;
    }

    .vote-ticket-summary strong {
        color: #1c2333;
    }

    .vote-ticket-summary small {
        overflow: hidden;
        color: #9aa3b4;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vote-ticket-boxes {
        order: 1;
        grid-template-columns: repeat(3, 38px);
        gap: 8px;
    }

    .vote-ticket-boxes span {
        min-height: 32px;
        border-radius: 8px;
        background: #ffe79a;
        color: #9c6500;
        font-size: 14px;
    }

    .vote-ticket-boxes span.is-used {
        background: #f1f4fb;
        color: #c5cedb;
    }

    .vote-list-panel {
        width: calc(100% - 28px);
    }

    .vote-shell .vote-toolbar {
        align-items: stretch;
        flex-direction: column;
        padding: 14px;
    }

    .vote-shell .vote-tabs {
        overflow-x: auto;
    }

    .vote-shell .vote-tab {
        flex: 1 0 auto;
    }

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

    .vote-footer {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }
}

@media (max-width: 520px) {
    .vote-topbar {
        padding: 28px 22px 6px;
    }

    .vote-mobile-back {
        width: 42px;
        height: 42px;
    }

    .vote-brand img {
        width: 158px;
    }

    .vote-title-mini strong {
        font-size: 16px;
    }

    .vote-title-mini em {
        font-size: 12px;
    }

    .vote-season {
        min-height: 30px;
        font-size: 13px;
    }

    .vote-hero h1 {
        font-size: 38px;
    }

    .vote-hero-tags span {
        font-size: 13px;
    }

    .vote-hero-stats strong {
        font-size: 30px;
    }

    .vote-ticket-panel {
        padding: 14px 16px;
        border-radius: 18px;
    }

    .vote-ticket-summary {
        gap: 12px;
    }

    .vote-ticket-boxes {
        grid-template-columns: repeat(3, 32px);
        gap: 7px;
    }

    .vote-ticket-boxes span {
        min-height: 30px;
        font-size: 13px;
    }

    .vote-ticket-summary span,
    .vote-ticket-summary small {
        font-size: 11px;
    }

    .vote-ticket-summary strong {
        font-size: 15px;
    }

    .vote-shell .vote-cover {
        aspect-ratio: 16 / 10;
    }

    .vote-author-row {
        grid-template-columns: auto auto minmax(0, 1fr);
    }

    .vote-author-row small {
        grid-column: 3;
    }
}

.ranking-shell {
    min-height: 100vh;
    background: linear-gradient(180deg, #1f1956 0 620px, #f2f5fb 620px 100%);
    color: #171c2a;
}

.ranking-topbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    width: min(1320px, calc(100% - 48px));
    height: 76px;
    margin: 0 auto;
    color: #ffffff;
}

.ranking-mobile-back,
.ranking-title-mobile,
.ranking-h1-mobile,
.ranking-mobile-live,
.ranking-link-mobile,
.ranking-board-title-mobile,
.ranking-work-icon,
.ranking-work-author-mobile {
    display: none;
}

.ranking-topbar .vote-brand img {
    filter: none;
    opacity: 1;
}

.ranking-mini-title {
    display: grid;
    gap: 4px;
    padding-left: 18px;
    border-left: 1px solid rgb(255 255 255 / 22%);
}

.ranking-mini-title strong {
    color: #ffffff;
    font-size: 16px;
}

.ranking-mini-title strong b {
    font-style: normal;
}

.ranking-mini-title strong span {
    display: inline-flex;
    margin-right: 6px;
    padding: 2px 7px;
    border-radius: 5px;
    background: #ffba3b;
    color: #ffffff;
    font-size: 12px;
}

.ranking-mini-title em {
    color: rgb(255 255 255 / 70%);
    font-size: 13px;
    font-style: normal;
}

.ranking-user {
    display: grid;
    grid-template-columns: auto auto;
    gap: 8px;
    align-items: center;
    min-height: 42px;
    padding: 4px 16px 4px 5px;
    border-radius: 999px;
    background: rgb(255 255 255 / 18%);
}

.ranking-user[hidden] {
    display: none;
}

.ranking-user span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: #756cff;
    color: #ffffff;
    font-weight: 900;
}

.ranking-user strong {
    color: #ffffff;
    font-size: 14px;
}

.ranking-hero {
    position: relative;
    overflow: hidden;
    min-height: 655px;
    padding: 42px 0 0;
    background:
        radial-gradient(circle at 50% 48%, rgb(67 52 140 / 46%) 0 270px, transparent 272px),
        linear-gradient(180deg, #282064 0%, #241b59 62%, #6f678f 100%);
    color: #ffffff;
}

.ranking-star {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 14px #ffffff;
    opacity: .72;
}

.ranking-star.s1 { left: 8%; top: 140px; }
.ranking-star.s2 { right: 13%; top: 180px; }
.ranking-star.s3 { left: 78%; top: 300px; }

.ranking-heading {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ranking-heading > span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 20px;
    border: 1px solid rgb(255 218 155 / 72%);
    border-radius: 999px;
    color: #ffe4ac;
    font-weight: 900;
}

.ranking-heading h1 {
    margin: 24px 0 12px;
    color: #fff4bf;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
}

.ranking-heading p {
    margin: 0;
    color: rgb(255 255 255 / 78%);
    font-size: 17px;
    font-weight: 800;
}

.ranking-heading em {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    margin-top: 22px;
    padding: 0 22px;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 999px;
    background: rgb(255 255 255 / 8%);
    color: rgb(255 255 255 / 78%);
    font-style: normal;
    font-weight: 800;
}

.ranking-podium {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px 330px 280px;
    justify-content: center;
    align-items: end;
    gap: 50px;
    width: min(1080px, calc(100% - 48px));
    margin: 70px auto 0;
}

.ranking-pod {
    display: grid;
    justify-items: center;
    text-align: center;
}

.ranking-pod-1 {
    order: 2;
}

.ranking-pod-2 {
    order: 1;
}

.ranking-pod-3 {
    order: 3;
}

.ranking-avatar {
    position: relative;
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    border: 5px solid #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7d8c, #ffb36f);
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgb(0 0 0 / 20%);
}

.ranking-pod-2 .ranking-avatar {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.ranking-pod-3 .ranking-avatar {
    background: linear-gradient(135deg, #ff9a8b, #ffe066);
}

.ranking-avatar span {
    position: absolute;
    right: -4px;
    bottom: -5px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #ffc044;
    color: #ffffff;
    font-size: 18px;
}

.ranking-pod h3 {
    margin: 14px 0 4px;
    color: #ffffff;
    font-size: 18px;
}

.ranking-pod p {
    margin: 0;
    color: rgb(255 255 255 / 72%);
    font-size: 14px;
}

.ranking-pod > strong {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 0 16px;
    border: 1px solid rgb(255 209 102 / 40%);
    border-radius: 999px;
    background: rgb(255 209 102 / 16%);
    color: #fff1c2;
}

.ranking-block {
    display: grid;
    width: 100%;
    height: 130px;
    place-items: center;
    margin-top: 28px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, #ffd166, #ff9f1c);
    color: #ffffff;
    font-size: 54px;
    font-weight: 900;
}

.ranking-pod-1 .ranking-block {
    height: 170px;
}

.ranking-pod-2 .ranking-block {
    background: linear-gradient(180deg, #d8e1eb, #96a5b8);
}

.ranking-pod-3 .ranking-block {
    background: linear-gradient(180deg, #f4bc91, #d1853d);
}

.ranking-board {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 48px));
    margin: -18px auto 0;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 22px 52px rgb(41 52 86 / 11%);
}

.ranking-board header {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 28px;
}

.ranking-board h2 {
    margin: 0;
    color: #171c2a;
    font-size: 21px;
}

.ranking-board h2::before {
    display: inline-block;
    width: 5px;
    height: 26px;
    margin-right: 12px;
    border-radius: 999px;
    background: #756cff;
    content: "";
    vertical-align: middle;
}

.ranking-board header a,
.ranking-cta a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: #f3f5fa;
    color: #756cff;
    font-weight: 900;
    text-decoration: none;
}

.ranking-table-head,
.ranking-row {
    display: grid;
    grid-template-columns: 72px 2fr 1.2fr 1.4fr 120px 110px;
    gap: 18px;
    align-items: center;
    padding: 0 28px;
}

.ranking-table-head {
    min-height: 48px;
    background: #f8f9fd;
    color: #a0a8b8;
    font-size: 13px;
    font-weight: 900;
}

.ranking-row {
    min-height: 84px;
    border-top: 1px solid #edf0f6;
}

.ranking-rank {
    color: #b8c1d0;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
}

.ranking-row:nth-child(1) .ranking-rank,
.ranking-row:nth-child(2) .ranking-rank {
    color: #756cff;
}

.ranking-work {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.ranking-work img {
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.ranking-work strong,
.ranking-author strong,
.ranking-votes strong {
    display: block;
    overflow: hidden;
    color: #171c2a;
    font-size: 16px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-work span,
.ranking-votes span {
    color: #8b94a6;
    font-size: 13px;
    font-weight: 800;
}

.ranking-author {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.ranking-author i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b8dff, #8357f6);
    color: #ffffff;
    font-style: normal;
    font-weight: 900;
}

.ranking-rate {
    display: grid;
    grid-template-columns: minmax(80px, 1fr) 48px;
    gap: 12px;
    align-items: center;
}

.ranking-rate i {
    display: block;
    overflow: hidden;
    height: 6px;
    border-radius: 999px;
    background: #edf0f6;
}

.ranking-rate b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #6b8dff, #8357f6);
}

.ranking-rate span {
    color: #7b8496;
    font-size: 13px;
    font-weight: 900;
}

.ranking-votes {
    text-align: right;
}

.ranking-votes span {
    display: block;
    color: #10b981;
}

.ranking-votes span.is-down {
    color: #ef4444;
}

.ranking-vote-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #6b8dff, #8357f6);
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
}

.ranking-vote-button.is-voted,
.ranking-vote-button.is-disabled {
    background: #eef1f7;
    color: #9aa4b5;
    cursor: not-allowed;
}

.ranking-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1180px, calc(100% - 48px));
    margin: 24px auto 0;
    padding: 24px 34px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6b8dff, #8357f6);
    color: #ffffff;
    box-shadow: 0 18px 42px rgb(99 91 255 / 18%);
}

.ranking-cta strong,
.ranking-cta span {
    display: block;
}

.ranking-cta strong {
    font-size: 22px;
}

.ranking-cta span {
    margin-top: 6px;
    color: rgb(255 255 255 / 78%);
}

.ranking-cta a {
    background: #ffffff;
}

@media (max-width: 980px) {
    .ranking-shell {
        background: linear-gradient(180deg, #342a64 0 660px, #f2f5fb 660px 100%);
    }

    .ranking-topbar {
        grid-template-columns: 42px auto minmax(0, 1fr);
        gap: 12px;
        width: calc(100% - 44px);
        height: auto;
        padding: 28px 0 8px;
    }

    .ranking-mobile-back {
        position: absolute;
        left: 22px;
        top: 28px;
        z-index: 4;
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: rgb(255 255 255 / 12%);
        color: #ffffff;
        cursor: pointer;
    }

    .ranking-mobile-back i {
        font-size: 30px;
        line-height: 1;
    }

    .ranking-topbar .vote-brand {
        min-width: 132px;
    }

    .ranking-topbar .vote-brand img {
        width: 132px;
    }

    .ranking-mini-title {
        gap: 3px;
        padding-left: 0;
        border-left: 0;
    }

    .ranking-mini-title strong {
        font-size: 17px;
        line-height: 1.15;
    }

    .ranking-season-mark,
    .ranking-title-desktop {
        display: none !important;
    }

    .ranking-title-mobile {
        display: inline;
    }

    .ranking-mini-title em {
        color: rgb(255 255 255 / 78%);
        font-size: 13px;
    }

    .ranking-user {
        display: none !important;
    }

    .ranking-hero {
        min-height: 0;
        padding: 24px 0 22px;
        background:
            radial-gradient(circle at 50% 53%, rgb(23 15 70 / 42%) 0 210px, transparent 212px),
            linear-gradient(180deg, #342a64 0%, #211954 58%, #9188a6 100%);
    }

    .ranking-podium {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 1fr);
        gap: 0;
        width: calc(100% - 34px);
        margin-top: 34px;
    }

    .ranking-pod {
        display: grid;
        justify-items: center;
        align-items: end;
        min-width: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        text-align: center;
    }

    .ranking-pod-1,
    .ranking-pod-2,
    .ranking-pod-3 {
        order: initial;
    }

    .ranking-pod-1 { order: 2; }
    .ranking-pod-2 { order: 1; }
    .ranking-pod-3 { order: 3; }

    .ranking-avatar {
        width: 76px;
        height: 76px;
        border-width: 4px;
        font-size: 30px;
    }

    .ranking-pod-1 .ranking-avatar {
        width: 96px;
        height: 96px;
        font-size: 38px;
    }

    .ranking-pod-1 .ranking-avatar::before {
        position: absolute;
        top: -38px;
        left: 50%;
        color: #ffc044;
        content: "♛";
        font-size: 40px;
        line-height: 1;
        text-shadow: 0 2px 0 #ffffff;
        transform: translateX(-50%);
    }

    .ranking-avatar span {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .ranking-pod h3 {
        max-width: 100%;
        margin: 10px 0 2px;
        overflow: hidden;
        font-size: 17px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ranking-pod p {
        font-size: 13px;
    }

    .ranking-pod > strong {
        min-height: 30px;
        margin-top: 10px;
        padding: 0 12px;
        font-size: 13px;
    }

    .ranking-block {
        display: grid;
        height: 112px;
        margin-top: 16px;
        border-radius: 14px 14px 0 0;
        font-size: 46px;
    }

    .ranking-pod-1 .ranking-block {
        height: 154px;
    }

    .ranking-pod-2 .ranking-block {
        height: 112px;
    }

    .ranking-pod-3 .ranking-block {
        height: 86px;
    }

    .ranking-board {
        width: calc(100% - 34px);
        margin-top: -4px;
        border-radius: 24px;
    }

    .ranking-table-head {
        display: none;
    }

    .ranking-row {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 12px;
        min-height: 88px;
        padding: 13px 18px;
    }

    .ranking-author,
    .ranking-rate {
        display: none;
    }

    .ranking-votes {
        text-align: right;
    }

    .ranking-vote-button {
        display: none;
    }

    .ranking-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .ranking-shell {
        background: linear-gradient(180deg, #342a64 0 650px, #f2f5fb 650px 100%);
    }

    .ranking-heading {
        width: calc(100% - 34px);
        margin: 0 auto;
    }

    .ranking-heading > span {
        min-height: 30px;
        padding: 0 18px;
        font-size: 14px;
    }

    .ranking-heading h1 {
        margin: 20px 0 18px;
        color: #fff4bf;
        font-size: 38px;
    }

    .ranking-h1-desktop,
    .ranking-heading p,
    .ranking-heading > em {
        display: none;
    }

    .ranking-h1-mobile,
    .ranking-mobile-live {
        display: block;
    }

    .ranking-mobile-live {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        text-align: left;
    }

    .ranking-mobile-live strong,
    .ranking-mobile-live span {
        display: inline-flex;
        min-height: 34px;
        align-items: center;
        white-space: nowrap;
    }

    .ranking-mobile-live strong {
        gap: 5px;
        color: #fff4bf;
        font-size: 15px;
        font-weight: 900;
    }

    .ranking-mobile-live span {
        gap: 7px;
        padding: 0 12px;
        border: 1px solid rgb(255 255 255 / 16%);
        border-radius: 999px;
        background: rgb(255 255 255 / 8%);
        color: rgb(255 255 255 / 78%);
        font-size: 13px;
        font-weight: 800;
    }

    .ranking-mobile-live span i {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #13c99a;
    }

    .ranking-board h2 {
        min-width: 0;
        font-size: 19px;
        white-space: nowrap;
    }

    .ranking-board-title-desktop {
        display: none;
    }

    .ranking-board-title-mobile {
        display: inline;
    }

    .ranking-board h2::before {
        height: 22px;
        margin-right: 10px;
    }

    .ranking-board header {
        align-items: center;
        flex-direction: row;
        min-height: 66px;
        gap: 10px;
        padding: 0 18px;
    }

    .ranking-board header a {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .ranking-link-desktop {
        display: none;
    }

    .ranking-link-mobile {
        display: inline;
    }

    .ranking-work {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 14px;
    }

    .ranking-work img {
        display: none;
    }

    .ranking-work-icon {
        display: grid;
        width: 56px;
        height: 56px;
        place-items: center;
        border-radius: 14px;
        background: linear-gradient(135deg, #26d0f4, #2bb7ff);
        color: #ffffff;
        font-size: 22px;
        font-weight: 900;
    }

    .ranking-row:nth-child(2n) .ranking-work-icon {
        background: linear-gradient(135deg, #f8c1f0, #9b7be8);
    }

    .ranking-row:nth-child(3n) .ranking-work-icon {
        background: linear-gradient(135deg, #8df2bb, #69cbe3);
    }

    .ranking-row:nth-child(4n) .ranking-work-icon {
        background: linear-gradient(135deg, #ffe3c8, #ffb199);
    }

    .ranking-work-meta {
        display: none;
    }

    .ranking-work-author-mobile {
        display: block;
    }

    .ranking-work strong,
    .ranking-votes strong {
        font-size: 15px;
    }

    .ranking-rank {
        font-size: 22px;
    }

    .ranking-votes span {
        font-size: 12px;
    }

    .ranking-cta {
        width: calc(100% - 44px);
        margin-top: 28px;
        padding: 20px 22px;
        border-radius: 20px;
    }

}
