:root {
    --bg: #16141c;
    --panel: #ffffff;
    --text: #1a1625;
    --text-muted: #6b6280;
    --brand: #8326ff;
    --brand-soft: #f3ecff;
    --brand-deep: #6a12e0;
    --accent-a: #9b4dff;
    --accent-b: #c026ff;
    --radius: 20px;
    --radius-sm: 16px;
    --radius-icon: 24px;
    --container: 740px;
    --header-h: 72px;
    --bottom-h: 88px;
    --gap: 20px;
    --pad-x: 18px;
    --section-gap: 24px;
    --app-name-gap: 0.55rem;
    --app-col-gap: 0.75rem;
    --app-name-size: 0.8rem;
    --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-soft: 0 8px 28px rgba(28, 25, 23, 0.08);
    --shadow-lift: 0 14px 36px color-mix(in srgb, var(--brand) 22%, transparent);
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html, body {
    min-height: 100%;
}

body {
    font-family: var(--font);
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    padding-bottom: calc(var(--bottom-h) + env(safe-area-inset-bottom, 0px));
    -webkit-tap-highlight-color: transparent;
}

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

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.screen-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vibe-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: #f4f0fa;
    background-image:
        radial-gradient(900px 380px at 50% -10%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 55%),
        linear-gradient(180deg, color-mix(in srgb, var(--brand-soft) 70%, #fff) 0%, #f4f0fa 40%, #f4f0fa 100%);
}

/* Header — 宽度与底部 sticky-dl 一致（容器居中，非通栏） */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    width: min(var(--container), 100%);
    margin: 0 auto;
    border-radius: 0 0 1.1rem 1.1rem;
    background: linear-gradient(135deg, var(--accent-a) 0%, var(--brand) 48%, var(--brand-deep) 100%);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--brand) 28%, transparent);
    overflow: hidden;
}

.top-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%);
    pointer-events: none;
}

.top-bar-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: var(--header-h);
    padding: 12px var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.logo-link {
    flex: 0 0 auto;
    width: min(36vw, 140px);
    line-height: 0;
    transition: transform 0.28s var(--ease-out), filter 0.28s ease;
}

.logo-link img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.util-nav {
    flex: 0 0 auto;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.util-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.util-btn-ico {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    flex: 0 0 auto;
    overflow: visible;
    transition: transform 0.25s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
    .logo-link:hover {
        transform: scale(1.04);
    }

    .util-btn:hover,
    .util-btn:focus-visible {
        background: rgba(255, 255, 255, 0.24);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        transform: translateY(-1px);
        text-decoration: none;
    }

    .util-btn:hover .util-btn-ico {
        transform: scale(1.08);
    }
}

/* Main */
.content-wrap {
    width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 18px var(--pad-x) 12px;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

/* Banner / carousel — 按图片原始比例自适应，避免裁切 */
.slide-zone {
    width: 100%;
    margin: 0;
}

.slide-box {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.65);
    transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.slide-box.swiper-container-autoheight .swiper-wrapper,
.slide-box.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
}

.slide-box .swiper-slide {
    height: auto;
    width: 100%;
}

.slide-box .swiper-slide a {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.slide-box img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.55s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
    .slide-box:hover {
        box-shadow: var(--shadow-lift);
        transform: translateY(-2px);
    }

    .slide-box .swiper-slide a:hover img {
        transform: scale(1.03);
    }
}

.slide-box .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.625rem;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.375rem;
}

.slide-box .swiper-pagination-bullet {
    width: 0.4375rem;
    height: 0.4375rem;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.slide-box .swiper-pagination-bullet-active {
    width: 1.125rem;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Welcome notice — original white pill marquee */
.notice-bar {
    width: 100%;
    /* 抵消 content-wrap 的 section gap，让上下更紧凑 */
    margin: calc(var(--section-gap) * -0.45) 0;
}

.notice-scroll {
    width: 100%;
    height: 30px;
    line-height: 30px;
    background: linear-gradient(90deg, #fff 0%, var(--brand-soft) 50%, #fff 100%);
    color: var(--text);
    border-radius: 999px;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--brand) 8%, transparent);
}

.notice-scroll p {
    display: inline-block;
    margin: 0;
    padding-left: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    animation: notice-scroll 18s linear infinite;
}

@keyframes notice-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
    .notice-scroll p {
        animation: none;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: top;
    }
}

/* APP grid */
.apps-shelf {
    margin: 0;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: var(--app-col-gap);
    row-gap: 0;
    width: 100%;
    align-items: start;
}

.apps-cell {
    display: flex;
    min-width: 0;
    container-type: inline-size;
    container-name: app-cell;
}

.apps-cell a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    text-align: center;
    width: 100%;
}

.apps-icon {
    width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 1;
    border-radius: var(--radius-icon);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 6px 18px rgba(28, 25, 23, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s ease;
}

.apps-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out);
}

.apps-label {
    width: 100%;
    flex: 0 0 auto;
    box-sizing: border-box;
    margin: var(--app-name-gap) 0;
    padding: 0;
    min-height: 1.3em;
    font-size: var(--app-name-size);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
    .apps-cell a:hover .apps-icon,
    .apps-cell a:focus-visible .apps-icon {
        transform: translateY(-5px) scale(1.04);
        box-shadow: var(--shadow-lift);
        border-color: color-mix(in srgb, var(--brand) 35%, transparent);
    }

    .apps-cell a:hover .apps-icon img,
    .apps-cell a:focus-visible .apps-icon img {
        transform: scale(1.06);
    }

    .apps-cell a:hover .apps-label,
    .apps-cell a:focus-visible .apps-label {
        color: var(--brand-deep);
        transform: translateY(-1px);
    }
}

@supports (font-size: 1cqi) {
    .apps-label {
        font-size: min(var(--app-name-size), calc(100cqi / 6));
    }
}

/* Hot APP list */
.hot-zone {
    margin: 0;
    padding-bottom: 8px;
}

.hot-title {
    margin: 0 0 16px;
    padding-left: 0.7rem;
    font-size: clamp(18px, 4.2vw, 22px);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #111;
    position: relative;
}

.hot-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-a) 0%, var(--brand) 55%, var(--brand-deep) 100%);
    box-shadow: 0 0 12px color-mix(in srgb, var(--brand) 35%, transparent);
}

.hot-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hot-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
    color: var(--text);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}

.hot-cover {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    overflow: hidden;
    background: #e7e5e4;
    box-shadow: 0 4px 12px rgba(28, 25, 23, 0.1);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.hot-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.hot-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hot-name {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
}

.hot-rating {
    font-size: 13px;
    color: var(--brand);
    letter-spacing: 0.04em;
}

.hot-rating em {
    margin-left: 6px;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0;
    color: var(--text-muted);
}

.hot-desc {
    font-size: 13px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-cta {
    width: 88px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hot-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    min-width: 4.75rem;
    height: 2.15rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-a) 0%, var(--brand) 55%, var(--brand-deep) 100%);
    box-shadow: 0 2px 0 color-mix(in srgb, var(--brand-deep) 35%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, filter 0.25s ease;
}

.hot-dl-ico {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    display: block;
    transition: transform 0.3s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
    .hot-card:hover,
    .hot-card:focus-visible {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.94);
        border-color: color-mix(in srgb, var(--brand) 28%, transparent);
        box-shadow: var(--shadow-lift);
    }

    .hot-card:hover .hot-cover,
    .hot-card:focus-visible .hot-cover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px color-mix(in srgb, var(--brand) 20%, transparent);
    }

    .hot-card:hover .hot-cover img,
    .hot-card:focus-visible .hot-cover img {
        transform: scale(1.08);
    }

    .hot-card:hover .hot-name,
    .hot-card:focus-visible .hot-name {
        color: var(--brand-deep);
    }

    .hot-card:hover .hot-dl,
    .hot-card:focus-visible .hot-dl {
        transform: translateY(-1px) scale(1.04);
        filter: brightness(1.06);
        box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 35%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    .hot-card:hover .hot-dl-ico,
    .hot-card:focus-visible .hot-dl-ico {
        transform: translateY(1px);
    }
}

/* Bottom fixed bar */
.sticky-dl {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 30;
    transform: translateX(-50%);
    width: min(var(--container), 100%);
    padding: 14px var(--pad-x) calc(14px + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 1.15rem 1.15rem 0 0;
    background: linear-gradient(120deg, var(--accent-a) 0%, var(--brand) 45%, var(--accent-b) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -10px 32px color-mix(in srgb, var(--brand) 28%, transparent);
}

.sticky-dl .dock-ico {
    width: 3.75rem;
    height: 3.75rem;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}

.sticky-dl .dock-ico img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.sticky-dl .dock-txt {
    flex: 1;
    min-width: 0;
    padding: 0 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sticky-dl .dock-txt strong {
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-dl .dock-txt span {
    font-size: 12px;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-dl .dock-btn {
    flex-shrink: 0;
    padding: 11px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-deep);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .sticky-dl:hover .logo {
        transform: scale(1.05);
    }

    .sticky-dl .dock-btn:hover,
    .sticky-dl .dock-btn:focus-visible {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
        color: var(--brand-deep);
    }
}

/* Soft entrance for main blocks */
@keyframes lift-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrap > * {
    animation: lift-in 0.55s var(--ease-out) both;
}

.content-wrap > *:nth-child(1) { animation-delay: 0.02s; }
.content-wrap > *:nth-child(2) { animation-delay: 0.08s; }
.content-wrap > *:nth-child(3) { animation-delay: 0.14s; }
.content-wrap > *:nth-child(4) { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
    .content-wrap > *,
    .apps-icon,
    .apps-icon img,
    .apps-label,
    .hot-card,
    .hot-cover,
    .hot-cover img,
    .hot-dl,
    .slide-box,
    .slide-box img,
    .logo-link,
    .util-btn,
    .sticky-dl .dock-ico,
    .sticky-dl .dock-btn {
        animation: none !important;
        transition: none !important;
    }
}

/* Tablet / phone */
@media screen and (max-width: 768px) {
    :root {
        --header-h: 64px;
        --bottom-h: 84px;
        --gap: 14px;
        --pad-x: 0.875rem;
        --section-gap: 1.125rem;
        --radius: 16px;
        --radius-sm: 12px;
        --radius-icon: 18px;
        --app-name-gap: 0.5rem;
        --app-col-gap: 0.625rem;
        --app-name-size: 0.8rem;
    }

    html {
        font-size: 16px;
    }

    .vibe-bg {
        background-image: none;
        background-color: #f4f0fa;
    }

    .top-bar-inner {
        min-height: var(--header-h);
        padding: 0.625rem var(--pad-x);
        gap: 0.625rem;
    }

    .logo-link {
        width: min(32vw, 118px);
    }

    .header-coop {
        font-size: 0.8125rem;
    }

    .content-wrap {
        padding: 0.875rem var(--pad-x) 0.875rem;
    }

    .notice-bar {
        margin: calc(var(--section-gap) * -0.4) 0;
    }

    .notice-scroll {
        height: 26px;
        line-height: 26px;
    }

    .notice-scroll p {
        font-size: 0.75rem;
        padding-left: 0.65rem;
        animation-duration: 16s;
    }

    .slide-box .swiper-pagination {
        bottom: 0.5rem;
    }

    .hot-title {
        margin-bottom: 0.875rem;
        font-size: 1.125rem;
    }

    .hot-list {
        gap: 0.75rem;
    }

    .hot-card {
        grid-template-columns: 4.5rem minmax(0, 1fr) 4.5rem;
        gap: 0.75rem;
        padding: 0.625rem;
    }

    .hot-cover {
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 1.125rem;
    }

    .hot-name {
        font-size: 1rem;
    }

    .hot-rating {
        font-size: 0.75rem;
    }

    .hot-rating em {
        display: none;
    }

    .hot-desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
    }

    .hot-cta {
        width: 4.5rem;
    }

    .hot-dl {
        min-width: 4.25rem;
        height: 1.95rem;
        padding: 0 0.55rem;
        font-size: 0.8125rem;
        gap: 0.2rem;
    }

    .hot-dl-ico {
        width: 0.95rem;
        height: 0.95rem;
    }

    .top-bar {
        border-radius: 0 0 0.9rem 0.9rem;
    }

    .sticky-dl {
        width: 100%;
        max-width: none;
        left: 0;
        transform: none;
        border-radius: 1rem 1rem 0 0;
        padding: 0.75rem var(--pad-x) calc(0.75rem + env(safe-area-inset-bottom, 0px));
    }

    .sticky-dl .dock-ico {
        width: 3.25rem;
        height: 3.25rem;
    }

    .sticky-dl .dock-ico img {
        border-radius: 0.875rem;
    }

    .sticky-dl .dock-txt {
        padding: 0 0.75rem;
    }

    .sticky-dl .dock-txt strong {
        font-size: 0.9375rem;
    }

    .sticky-dl .dock-txt span {
        font-size: 0.6875rem;
    }

    .sticky-dl .dock-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --pad-x: 0.75rem;
        --section-gap: 1rem;
        --header-h: 60px;
        --bottom-h: 80px;
        --radius-icon: 16px;
        --app-name-gap: 0.45rem;
        --app-col-gap: 0.5rem;
        --app-name-size: 0.8rem;
    }

    .logo-link {
        width: min(30vw, 108px);
    }

    .header-coop {
        font-size: 0.75rem;
    }

    .hot-card {
        grid-template-columns: 4rem minmax(0, 1fr) 4rem;
        gap: 0.625rem;
        padding: 0.625rem;
        border-radius: 0.875rem;
    }

    .hot-cover {
        width: 4rem;
        height: 4rem;
        border-radius: 1rem;
    }

    .hot-name {
        font-size: 0.9375rem;
    }

    .hot-cta {
        width: 4rem;
    }

    .hot-dl {
        min-width: 3.75rem;
        height: 1.85rem;
        padding: 0 0.45rem;
        font-size: 0.75rem;
    }

    .hot-dl-ico {
        width: 0.875rem;
        height: 0.875rem;
    }

    .sticky-dl .dock-btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 360px) {
    :root {
        --pad-x: 0.625rem;
        --app-name-gap: 0.4rem;
        --app-col-gap: 0.375rem;
        --app-name-size: 0.8rem;
    }

    .logo-link {
        width: min(28vw, 96px);
    }

    .hot-title {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
    }

    .hot-rating {
        display: none;
    }

    .sticky-dl .dock-txt span {
        display: none;
    }

    .sticky-dl .dock-btn {
        padding: 0.5625rem 0.6875rem;
        font-size: 0.75rem;
    }
}

@media screen and (min-width: 768px) {
    :root {
        --pad-x: 1.25rem;
        --section-gap: 1.5rem;
        --app-name-gap: 0.65rem;
        --app-col-gap: 1rem;
        --app-name-size: 1rem;
    }

    .hot-card {
        padding: 0.875rem 1rem;
    }

    .hot-name {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 960px) {
    :root {
        --container: 780px;
        --app-name-size: 1rem;
    }

    .content-wrap {
        padding-top: 1.375rem;
    }

    .apps-icon {
        border-radius: 24px;
    }
}
