* {
    box-sizing: border-box;
}

:root {
    --bg: #151A23;
    --panel: #1B2130;
    --panel-2: #202738;
    --panel-3: #252D40;
    --gold: #F1DCA3;
    --gold-hover: #E3C98F;
    --text: #E8ECF5;
    --muted: #B8C0D3;
    --soft: #8F98AD;
    --footer: #0E121A;
    --border: rgba(241,220,163,0.14);
    --shadow: 0 14px 36px rgba(0,0,0,0.28);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}

body.drawer-open {
    overflow: hidden;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #151A23;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    border-bottom: 1px solid rgba(241,220,163,0.08);
}

.header-inner {
    width: min(1200px, calc(100% - 32px));
    min-height: 74px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.logo-link img,
.drawer-logo img,
.footer-logo img {
    width: 132px;
    max-height: 46px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.desktop-nav > a,
.nav-dropdown > button {
    color: var(--gold);
    font: inherit;
    font-size: 15px;
    border: 0;
    background: transparent;
    padding: 20px 12px;
    border-radius: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover,
.desktop-nav > a.active,
.nav-dropdown.active > button {
    background: linear-gradient(180deg, rgba(241,220,163,0.10), rgba(241,220,163,0.02));
    box-shadow: inset 0 -2px 0 #F1DCA3, 0 10px 22px rgba(241,220,163,0.16);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%) translateY(8px);
    min-width: 168px;
    padding: 10px;
    border-radius: 16px;
    background: #1B2130;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.22s ease;
}

.dropdown-panel a {
    display: block;
    color: var(--gold);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
}

.dropdown-panel a:hover,
.dropdown-panel a.active {
    background: rgba(241,220,163,0.10);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    background: #F1DCA3;
    color: #151A23;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(241,220,163,0.18);
    transition: 0.2s ease;
    border: 1px solid rgba(255,255,255,0.10);
    white-space: nowrap;
}

.main-btn:hover {
    background: #E3C98F;
    transform: translateY(-1px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #F1DCA3;
    font-weight: 700;
}

.text-link::after {
    content: "›";
    font-size: 18px;
    line-height: 1;
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(241,220,163,0.18);
    background: rgba(241,220,163,0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: #F1DCA3;
}

.drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.58);
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    transition: 0.22s ease;
}

.drawer-mask.show {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: min(84vw, 320px);
    z-index: 10001;
    background: #1B2130;
    border-right: 1px solid rgba(241,220,163,0.16);
    box-shadow: 18px 0 40px rgba(0,0,0,0.36);
    transform: translateX(-102%);
    transition: transform 0.28s ease;
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-head {
    min-height: 74px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(241,220,163,0.12);
}

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(241,220,163,0.20);
    color: #F1DCA3;
    background: rgba(241,220,163,0.07);
    font-size: 24px;
    cursor: pointer;
}

.drawer-nav {
    padding: 14px;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    color: #F1DCA3;
    padding: 12px 14px;
    margin-bottom: 6px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
}

.drawer-nav a.active,
.drawer-nav a:hover {
    background: rgba(241,220,163,0.10);
    border-color: rgba(241,220,163,0.18);
}

main {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.banner-slider {
    max-width: 1200px;
    height: clamp(200px, 35vw, 420px);
    margin: 28px auto 36px;
    border-radius: 20px;
    background: #1B2130;
    box-shadow: 0 18px 40px rgba(0,0,0,0.30);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(241,220,163,0.13);
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    background: #1B2130;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-caption {
    position: absolute;
    left: clamp(18px, 5vw, 58px);
    bottom: clamp(22px, 5vw, 54px);
    max-width: 520px;
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(21,26,35,0.84), rgba(27,33,48,0.52));
    border: 1px solid rgba(241,220,163,0.16);
    box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}

.banner-caption strong {
    display: block;
    color: #F1DCA3;
    font-size: clamp(21px, 3vw, 36px);
    line-height: 1.25;
    margin-bottom: 8px;
}

.banner-caption span {
    color: #E8ECF5;
    font-size: 15px;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(241,220,163,0.18);
    background: rgba(21,26,35,0.72);
    color: #F1DCA3;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.slide-arrow:hover {
    background: rgba(14,18,26,0.86);
}

.slide-prev {
    left: 18px;
}

.slide-next {
    right: 18px;
}

.banner-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(241,220,163,0.24);
    cursor: pointer;
    transition: 0.2s ease;
}

.banner-dot.active {
    width: 28px;
    background: #F1DCA3;
}

.section {
    padding: 48px 0;
}

.section.compact {
    padding: 32px 0;
}

.hero-intro,
.page-hero,
.content-panel,
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card {
    background: #1B2130;
    border: 1px solid rgba(241,220,163,0.14);
    box-shadow: 0 14px 36px rgba(0,0,0,0.25);
}

.hero-intro,
.page-hero,
.content-panel {
    border-radius: 24px;
    padding: clamp(24px, 4vw, 44px);
}

.hero-intro {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
    align-items: center;
}

.kicker,
.card-tag,
.step-num,
.label {
    color: #F1DCA3;
    font-weight: 700;
    letter-spacing: 0.04em;
}

h1,
h2,
h3,
.section-title,
.nav a {
    color: #F1DCA3;
}

h1 {
    margin: 10px 0 16px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.15;
}

h2 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.3;
}

h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.35;
}

p {
    margin: 0 0 14px;
    color: #E8ECF5;
}

.muted {
    color: #B8C0D3;
}

.soft {
    color: #8F98AD;
}

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

.hero-stat {
    border-radius: 18px;
    background: #202738;
    border: 1px solid rgba(241,220,163,0.12);
    padding: 18px;
}

.hero-stat strong {
    display: block;
    color: #F1DCA3;
    font-size: 26px;
    margin-bottom: 4px;
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pill-card,
.card,
.zone-card,
.info-card,
.review-card,
.faq-item,
.notice-card {
    border-radius: 20px;
    padding: 20px;
}

.pill-card {
    background: #202738;
    border: 1px solid rgba(241,220,163,0.13);
}

.pill-card .num {
    display: inline-flex;
    color: #151A23;
    background: #F1DCA3;
    padding: 2px 10px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 12px;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 18px;
}

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

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

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

.card {
    min-height: 100%;
}

.card ul,
.content-panel ul,
.page-hero ul,
.hot-copy ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: #B8C0D3;
}

.card li,
.content-panel li,
.page-hero li,
.hot-copy li {
    margin: 6px 0;
}

.hot-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
    margin-bottom: 24px;
}

.hot-row.reverse .hot-copy {
    order: 1;
}

.hot-row.reverse .image-box {
    order: 2;
}

.image-box {
    overflow: hidden;
    border-radius: 22px;
    background: #202738;
    border: 1px solid rgba(241,220,163,0.14);
    box-shadow: var(--shadow);
    padding: 10px;
}

.image-box img,
.content-img,
.zone-card img,
.app-section img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    margin: 0 auto;
}

.hot-copy {
    background: #1B2130;
    border: 1px solid rgba(241,220,163,0.14);
    border-radius: 22px;
    padding: clamp(22px, 4vw, 34px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

.zone-card {
    overflow: hidden;
}

.zone-card img {
    width: 100%;
    margin-bottom: 16px;
    background: #202738;
}

.split-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-list span {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #202738;
    border: 1px solid rgba(241,220,163,0.11);
    color: #B8C0D3;
}

.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    border-radius: 20px;
    background: #202738;
    border: 1px solid rgba(241,220,163,0.12);
    padding: 20px;
}

.review-card p {
    color: #E8ECF5;
    margin-bottom: 0;
}

.review-card strong {
    display: block;
    color: #F1DCA3;
    margin-top: 14px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.compliance-bar {
    border-radius: 22px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(241,220,163,0.10), rgba(32,39,56,0.92));
    border: 1px solid rgba(241,220,163,0.18);
}

.page-hero {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.page-hero.no-image {
    grid-template-columns: 1fr;
}

.page-hero-img {
    border-radius: 22px;
    background: #202738;
    border: 1px solid rgba(241,220,163,0.14);
    padding: 10px;
    box-shadow: var(--shadow);
}

.page-hero-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: contain;
}

.info-card .small-title {
    display: block;
    color: #F1DCA3;
    font-weight: 800;
    margin-bottom: 8px;
}

.notice-card {
    background: #202738;
}

.site-footer {
    margin-top: 56px;
    background: #0E121A;
    color: #D5DBEA;
    border-top: 1px solid rgba(241,220,163,0.12);
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 1fr);
    gap: 28px;
}

.footer-brand p,
.footer-col a,
.footer-bottom {
    color: #D5DBEA;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-col h3 {
    font-size: 18px;
}

.footer-col a {
    display: block;
    margin: 7px 0;
}

.footer-col a:hover {
    color: #F1DCA3;
}

.footer-bottom {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 2px;
    }
    .desktop-nav > a,
    .nav-dropdown > button {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }
    .pill-grid,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .header-inner {
        min-height: 66px;
        grid-template-columns: 76px 1fr auto;
        gap: 10px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .logo-link {
        justify-self: center;
    }

    .logo-link img {
        width: 118px;
        max-height: 42px;
    }

    .header-btn {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }

    .hero-intro,
    .page-hero,
    .split-panel,
    .hot-row,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hot-row.reverse .hot-copy,
    .hot-row.reverse .image-box {
        order: initial;
    }

    .grid-3,
    .steps {
        grid-template-columns: 1fr;
    }

    .banner-caption {
        max-width: calc(100% - 40px);
        padding: 14px 16px;
    }

    .banner-caption span {
        display: none;
    }

    .slide-arrow {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .slide-prev {
        left: 10px;
    }

    .slide-next {
        right: 10px;
    }
}

@media (max-width: 560px) {
    main,
    .header-inner,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, 1200px);
    }

    .banner-slider {
        height: 210px;
        margin-top: 18px;
        border-radius: 16px;
    }

    .section {
        padding: 34px 0;
    }

    .hero-intro,
    .page-hero,
    .content-panel {
        border-radius: 20px;
        padding: 22px;
    }

    .pill-grid,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding-bottom: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
