:root {
    --color-yellow: #ffd000;
    --color-yellow-light: #ffd819;
    --color-green: #159a50;
    --color-green-dark: #08783b;
    --color-black: #101515;
    --color-white: #ffffff;
    --header-height: 112px;
    --page-padding-left: 84px;
    --page-padding-right: 55px;
    --card-background: rgba(255, 244, 190, 0.78);
    --card-border: rgba(255, 255, 255, 0.85);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
}

body {
    background: var(--color-yellow);
    color: var(--color-black);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

img,
canvas,
svg {
    display: block;
    max-width: 100%;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.mobile-header-top {
    display: contents;
}

button {
    border: 0;
    font: inherit;
    cursor: pointer;
    padding: 0;
    background: none;
}

.page-shell {
    position: relative;
    min-height: 100vh;
    background: var(--color-yellow);
}

.site-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

#bgFrameCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.site-header {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--header-height);
    padding: 0 55px 0 40px;
    background: transparent;
    border-bottom: none;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    order: 1;
    color: var(--color-black);
    text-decoration: none;
}

.logo-image {
    width: auto;
    height: 74px;
    max-width: min(48vw, 680px);
    flex: 0 0 auto;
    object-fit: contain;
}

.logo-image-mobile {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    object-fit: contain;
}

.mobile-brand {
    align-items: center;
    gap: 8px;
}

.mobile-brand-copy {
    display: flex;
    align-items: center;
    min-width: 0;
}

.mobile-brand-en,
.mobile-brand-cn {
    line-height: 1;
    color: var(--color-black);
    white-space: nowrap;
}

.mobile-brand-cn {
    margin-left: 5px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    gap: 64px;
    margin: 0 auto;
}

.nav-link {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #111111;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-green);
}

.nav-indicator {
    width: 42px;
    height: 4px;
    margin-top: 11px;
    background: var(--color-green);
    border-radius: 20px;
}

.nav-link:not(.is-active)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 42px;
    height: 4px;
    background: var(--color-green);
    border-radius: 20px;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.2s ease;
}

.nav-link:not(.is-active):hover::after {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    order: 3;
    gap: 16px;
    flex: 0 0 auto;
}

.header-icon-button {
    width: 78px;
    height: 64px;
    padding: 0 8px;
    border-radius: 18px;
    background: transparent;
}

.header-icon-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wallet-button,
.hero-button {
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        opacity 0.2s ease;
}

.wallet-button {
    width: 180px;
    height: 64px;
    flex: 0 0 180px;
    color: var(--color-white);
    font-size: 23px;
    font-weight: 700;
    background: #111515;
    border-radius: 19px;
}

.wallet-button:hover,
.hero-button:hover {
    transform: translateY(-2px);
}

.wallet-button:active,
.hero-button:active {
    transform: translateY(0);
}

.page-main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - var(--header-height));
}

.feature-grid-section {
    position: relative;
    z-index: 2;
    padding: 34px 52px 56px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 122px;
    padding: 18px 16px;
    background: rgba(255, 244, 190, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(170, 120, 0, 0.08);
}

.feature-card-image {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
        rgba(21, 154, 80, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-copy {
    min-width: 0;
}

.feature-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    color: #101515;
}

.feature-card-desc {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(16, 21, 21, 0.66);
}

.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 720px;
    overflow: hidden;
}

.hero-animation-mobile {
    display: none;
}

#heroFrameCanvasMobile {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-mobile-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: min(590px, calc(100% - 140px));
    margin-left: 108px;
    padding-top: 82px;
}

.eyebrow {
    margin: 0 0 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(24px, 1.55vw, 27px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 4px;
    color: #111515;
}

.chinese-title,
.english-title {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    line-height: 0.98;
    color: #111515;
}

.chinese-title {
    max-width: 550px;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: clamp(72px, 5.35vw, 86px);
    letter-spacing: -3px;
}

.english-title {
    margin-top: 6px;
    font-size: clamp(68px, 4.95vw, 79px);
    letter-spacing: -2px;
}

.slogan {
    margin: 35px 0 0;
    font-size: clamp(24px, 1.72vw, 27px);
    font-weight: 800;
    line-height: 1.4;
    color: #111515;
}

.description {
    margin: 8px 0 0;
    font-size: clamp(18px, 1.28vw, 20px);
    font-weight: 500;
    line-height: 1.7;
    color: #111515;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    margin-top: 28px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 800;
    line-height: 1;
    border-radius: 17px;
}

.hero-button-primary {
    width: 282px;
    height: 88px;
    color: var(--color-white);
    font-size: 29px;
    background: #179d52;
}

.hero-button-primary:hover {
    background: #118c47;
}

.hero-button-secondary {
    width: 220px;
    height: 88px;
    color: #111515;
    font-size: 27px;
    border: 3px solid #111515;
    background: transparent;
}

.hero-side-rail {
    position: absolute;
    top: 34px;
    right: -2px;
    z-index: 16;
    width: 164px;
}

.side-feature-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
}

.side-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100px;
    max-width: 100%;
    min-height: 98px;
    padding: 10px 8px 11px;
    text-align: center;
    background: rgba(255, 248, 221, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    box-shadow: 0 7px 16px rgba(145, 110, 0, 0.08);
    gap: 6px;
}

.side-feature-thumb {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.18)),
        rgba(21, 154, 80, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.86);
}

.side-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.side-feature-copy {
    min-width: 0;
    width: 100%;
}

.side-feature-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    color: #111515;
}

.side-feature-desc {
    margin: 2px 0 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(16, 21, 21, 0.56);
}

.hero-stats {
    position: absolute;
    left: 84px;
    right: 220px;
    bottom: 52px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1.05fr 0.92fr 1.1fr 1.02fr;
    gap: 18px;
    height: 145px;
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 0;
    height: 145px;
    padding: 18px 24px;
    background: var(--card-background);
    border: 1px solid var(--card-border);
    border-radius: 17px;
    box-shadow: 0 5px 16px rgba(170, 120, 0, 0.08);
}

.stat-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img,
.stat-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-fill {
    fill: currentColor;
    stroke: none;
}

.stat-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.stat-value {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(48px, 3.4vw, 55px);
    font-weight: 800;
    line-height: 1;
    color: var(--color-green);
}

.stat-label {
    margin-top: 6px;
    font-size: clamp(24px, 1.65vw, 27px);
    font-weight: 700;
    line-height: 1.08;
    color: #111515;
}

.stat-highlight {
    font-size: clamp(25px, 1.78vw, 29px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-green);
    white-space: nowrap;
}

.stat-label-strong {
    margin-top: 7px;
    font-size: clamp(25px, 1.78vw, 29px);
    font-weight: 800;
}

@media (max-width: 1600px) {
    :root {
        --header-height: 104px;
    }

    .site-header {
        padding-left: 34px;
        padding-right: 40px;
    }

    .site-nav {
        gap: 50px;
    }

    .nav-link {
        font-size: 19px;
    }

    .wallet-button {
        width: 168px;
        height: 60px;
        flex-basis: 168px;
        font-size: 21px;
    }

    .header-actions {
        gap: 12px;
    }

    .header-icon-button {
        width: 72px;
        height: 60px;
    }

    .hero-content {
        margin-left: 88px;
        width: min(540px, calc(100% - 110px));
        padding-top: 72px;
    }

    .hero-buttons {
        gap: 22px;
    }

    .hero-button-primary {
        width: 254px;
        height: 82px;
        font-size: 27px;
    }

    .hero-button-secondary {
        width: 206px;
        height: 82px;
        font-size: 25px;
    }

    .hero-stats {
        left: 56px;
        right: 342px;
        bottom: 34px;
        gap: 14px;
        height: 128px;
    }

    .stat-card {
        height: 128px;
        padding: 14px 18px;
        gap: 14px;
    }

    .stat-icon {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .feature-grid-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .feature-grid {
        gap: 12px;
    }

    .feature-card {
        min-height: 114px;
        padding: 16px 14px;
        gap: 12px;
        border-radius: 20px;
    }

    .feature-card-image {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .feature-card-title {
        font-size: 17px;
    }

    .hero-side-rail {
        top: 28px;
        right: 7px;
        width: 172px;
    }

    .side-feature-panel {
        gap: 9px;
    }

    .side-feature-thumb {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 13px;
    }

    .side-feature-title {
        font-size: 14px;
    }

    .side-feature-desc {
        font-size: 10px;
    }
}

@media (max-width: 1366px) {
    :root {
        --header-height: 96px;
    }

    .site-header {
        padding-left: 26px;
        padding-right: 28px;
    }

    .logo-image {
        height: 62px;
        max-width: min(44vw, 560px);
    }

    .site-nav {
        gap: 36px;
    }

    .nav-link {
        font-size: 18px;
    }

    .wallet-button {
        width: 152px;
        height: 56px;
        flex-basis: 152px;
        font-size: 20px;
        border-radius: 17px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-icon-button {
        width: 64px;
        height: 56px;
        border-radius: 16px;
    }

    .hero {
        min-height: 660px;
    }

    .hero-content {
        margin-left: 56px;
        width: min(500px, calc(100% - 80px));
        padding-top: 58px;
    }

    .eyebrow {
        letter-spacing: 3px;
    }

    .slogan {
        margin-top: 26px;
    }

    .description {
        line-height: 1.55;
    }

    .hero-buttons {
        gap: 18px;
        margin-top: 22px;
    }

    .hero-button-primary {
        width: 220px;
        height: 74px;
        font-size: 24px;
    }

    .hero-button-secondary {
        width: 184px;
        height: 74px;
        font-size: 23px;
        border-width: 2.5px;
    }

    .hero-stats {
        left: 36px;
        right: 206px;
        bottom: 24px;
        gap: 12px;
        height: 116px;
    }

    .stat-card {
        height: 116px;
        padding: 12px 14px;
        gap: 12px;
        border-radius: 15px;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .stat-value {
        font-size: 42px;
    }

    .stat-label,
    .stat-highlight,
    .stat-label-strong {
        font-size: 24px;
    }

    .feature-grid-section {
        padding: 28px 28px 48px;
    }

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

    .feature-card {
        min-height: 108px;
    }

    .hero-side-rail {
        top: 22px;
        right: 3px;
        width: 154px;
    }

    .side-feature-item {
        min-height: 102px;
        padding: 11px 8px 12px;
        gap: 8px;
        border-radius: 18px;
    }

    .side-feature-thumb {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
    }

    .side-feature-title {
        font-size: 13px;
    }

    .side-feature-desc {
        margin-top: 4px;
        font-size: 10px;
    }
}

@media (max-width: 1200px) {
    .site-header {
        gap: 18px;
        align-items: center;
    }

    .site-nav {
        gap: 24px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-icon-button {
        width: 56px;
        height: 52px;
        padding: 0 6px;
    }

    .nav-link {
        font-size: 16px;
    }

    .wallet-button {
        width: 136px;
        height: 52px;
        flex-basis: 136px;
        font-size: 18px;
    }

    .hero {
        min-height: 960px;
        height: auto;
        padding-bottom: 28px;
    }

    .hero-content {
        width: min(640px, calc(100% - 48px));
        margin: 0 auto;
        padding-top: 38px;
        text-align: left;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-stats {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: min(1040px, calc(100% - 40px));
        height: auto;
        margin: 24px auto 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-card {
        min-height: 112px;
        height: auto;
    }

    .feature-grid-section {
        padding-top: 20px;
    }

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

    .hero-side-rail {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    body {
        overflow-x: hidden;
    }

    .page-shell {
        overflow-x: hidden;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .site-background {
        display: none;
    }

    .site-header {
        display: block;
        height: auto;
        min-height: 118px;
        padding: calc(14px + env(safe-area-inset-top)) calc(18px + env(safe-area-inset-right)) 0 calc(18px + env(safe-area-inset-left));
    }

    .mobile-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        gap: 10px;
    }

    .logo-area {
        width: auto;
        min-width: 0;
        justify-content: flex-start;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .mobile-brand {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        min-width: 0;
    }

    .logo-image-mobile {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .mobile-brand-en {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 15px;
        font-weight: 800;
    }

    .mobile-brand-cn {
        margin-left: 4px;
        font-size: 12px;
        font-weight: 700;
    }

    .wallet-button {
        width: auto;
        min-width: 82px;
        height: 40px;
        padding: 0 12px;
        flex: 0 0 auto;
        font-size: 13px;
        border-radius: 12px;
        order: 3;
    }

    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        flex: 0 0 auto;
        order: 2;
    }

    .header-icon-button {
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 10px;
        flex: 0 0 34px;
    }

    .site-nav {
        margin-top: 14px;
        width: 100%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        flex-wrap: nowrap;
    }

    .nav-link {
        flex: 0 1 auto;
        min-width: 0;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }

    .nav-indicator {
        width: 26px;
        height: 3px;
        margin-top: 7px;
    }

    .nav-link:not(.is-active)::after {
        width: 26px;
        height: 3px;
        bottom: -10px;
    }

    .page-main {
        min-height: auto;
    }

    .hero {
        min-height: calc(100svh - 120px);
        height: auto;
        padding: 34px calc(18px + env(safe-area-inset-right)) calc(28px + env(safe-area-inset-bottom)) calc(18px + env(safe-area-inset-left));
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .eyebrow {
        margin-bottom: 12px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 2.5px;
    }

    .chinese-title {
        max-width: none;
        font-size: clamp(46px, 13vw, 58px);
        font-weight: 900;
        line-height: 0.95;
        letter-spacing: -2px;
        white-space: nowrap;
    }

    .english-title {
        margin-top: 6px;
        font-size: clamp(45px, 13vw, 58px);
        font-weight: 900;
        line-height: 0.95;
        letter-spacing: -1px;
        white-space: nowrap;
    }

    .slogan {
        margin-top: 24px;
        font-size: 18px;
        font-weight: 800;
        line-height: 1.45;
    }

    .description {
        max-width: 340px;
        margin-top: 7px;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.65;
    }

    .hero-buttons {
        position: relative;
        z-index: 10;
        display: grid;
        grid-template-columns: 1.35fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 22px;
    }

    .hero-button {
        width: 100%;
        min-width: 0;
        border-radius: 12px;
    }

    .hero-button-primary {
        height: 52px;
        font-size: 17px;
    }

    .hero-button-secondary {
        height: 52px;
        font-size: 16px;
        border-width: 2px;
    }

    .hero-animation-mobile {
        display: block !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 220px;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
    }

    .hero-mobile-placeholder {
        display: none;
        opacity: 0;
    }

    .hero-side-rail.desktop-only {
        display: block !important;
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin: 18px 0 0;
        z-index: 20;
    }

    .side-feature-panel {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        justify-items: stretch;
    }

    .side-feature-item {
        width: 100%;
    }

    .hero-stats {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        margin-top: 240px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        z-index: 20;
    }

    .stat-card {
        min-height: 92px;
        height: auto;
        padding: 14px 10px;
        gap: 9px;
        align-items: center;
        justify-content: flex-start;
        border-radius: 13px;
        background: rgba(255, 244, 190, 0.88);
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        margin-top: 2px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
    }

    .stat-highlight {
        font-size: 14px;
        font-weight: 800;
        line-height: 1.3;
    }

    .stat-label-strong {
        margin-top: 2px;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
    }

    .feature-grid-section {
        padding: 18px calc(18px + env(safe-area-inset-right)) calc(30px + env(safe-area-inset-bottom)) calc(18px + env(safe-area-inset-left));
    }

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

    .feature-card {
        min-height: 96px;
        padding: 12px 10px;
        gap: 10px;
        border-radius: 14px;
    }

    .feature-card-image {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 12px;
    }

    .feature-card-title {
        font-size: 15px;
        line-height: 1.25;
    }

    .feature-card-desc {
        margin-top: 4px;
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .hero-side-rail.desktop-only {
        margin-top: 16px;
    }

    .logo-image-mobile {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .mobile-brand-en {
        font-size: 14px;
    }

    .mobile-brand-cn,
    .nav-link {
        font-size: 12px;
    }

    .wallet-button {
        min-width: 78px;
        padding: 0 10px;
        font-size: 12px;
    }

    .header-actions {
        gap: 4px;
    }

    .header-icon-button {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .chinese-title {
        font-size: 46px;
    }

    .english-title {
        font-size: 46px;
    }

    .hero-button-primary {
        font-size: 16px;
    }

    .hero-button-secondary {
        font-size: 15px;
    }

    .hero-stats {
        margin-top: 224px;
    }
}
