\
:root {
    --bg: #101115;
    --bg-soft: #15161A;
    --bg-mid: #1B1C21;
    --bg-light: #202127;
    --gold: #F8C84A;
    --text: #EDEFF5;
    --muted: #B8BEC9;
    --hint: #8E96A6;
    --footer: #08090C;
    --border: rgba(248, 200, 74, 0.16);
    --shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    --btn: linear-gradient(180deg, #FFE45A 0%, #F8B832 45%, #F3941F 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.72;
    min-width: 320px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; color: var(--muted); }
h1, h2, h3, h4, .section-title { color: var(--gold); margin: 0; line-height: 1.25; }

.container-wide,
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.container-narrow { width: min(980px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
    background: #101115;
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    border-bottom: 1px solid rgba(248, 200, 74, 0.10);
}
.desktop-header {
    height: 78px;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 22px;
    align-items: center;
}
.brand-logo img { width: 132px; max-height: 54px; object-fit: contain; }
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.desktop-nav::-webkit-scrollbar { display: none; }
.nav-link {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    padding: 12px 10px;
    border-radius: 12px;
    transition: 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: linear-gradient(180deg, rgba(248,200,74,0.12), rgba(248,200,74,0.02));
    box-shadow: inset 0 -2px 0 #F8C84A, 0 10px 22px rgba(248,200,74,0.16);
}
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--btn);
    color: #101115;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(248,184,50,0.28), inset 0 1px 0 rgba(255,255,255,0.38);
    font-weight: 800;
    letter-spacing: 0.04em;
    border: 0;
    min-height: 42px;
    padding: 0 24px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.main-btn:hover { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 14px 30px rgba(248,184,50,0.34); }
.header-register { min-width: 88px; }
.mobile-header { display: none; }

.drawer-mask,
.mobile-drawer { display: none; }
.site-main { padding-bottom: 52px; }

.banner-slider {
    max-width: 1200px;
    margin: 28px auto 38px;
    border-radius: 22px;
    background: #15161A;
    border: 1px solid rgba(248,200,74,0.14);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    overflow: hidden;
    position: relative;
}
.slider-track { position: relative; background: #15161A; }
.slide { display: none; position: relative; }
.slide.active { display: block; }
.slide img {
    width: 100%;
    height: clamp(260px, 45vw, 540px);
    object-fit: contain;
    background: #15161A;
}
.slide-copy {
    position: absolute;
    left: clamp(18px, 5vw, 58px);
    bottom: clamp(18px, 5vw, 52px);
    width: min(520px, calc(100% - 36px));
    padding: 22px;
    border-radius: 18px;
    background: rgba(16,17,21,0.76);
    border: 1px solid rgba(248,200,74,0.18);
    box-shadow: 0 14px 30px rgba(0,0,0,0.32);
    backdrop-filter: blur(8px);
}
.slide-copy h1 { font-size: clamp(26px, 4vw, 48px); margin-bottom: 10px; }
.slide-copy p { color: #EDEFF5; }
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(248,200,74,0.35);
    background: rgba(16,17,21,0.78);
    color: var(--gold);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 4;
    transition: 0.2s ease;
}
.slider-arrow:hover { background: rgba(248,200,74,0.16); }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(248,200,74,0.65);
    background: rgba(255,255,255,0.22);
    cursor: pointer;
    padding: 0;
}
.slider-dot.active { width: 28px; background: var(--gold); }

.section { padding: 44px 0; }
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.section-title { font-size: clamp(24px, 3vw, 36px); }
.section-subtitle { max-width: 680px; color: var(--hint); }
.text-link {
    color: var(--gold);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.text-link::after { content: "›"; font-size: 20px; }

.quick-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.quick-pills a {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(248,200,74,0.08);
    border: 1px solid rgba(248,200,74,0.18);
    color: var(--gold);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.quick-pills a:hover { background: rgba(248,200,74,0.14); }

.category-grid,
.zone-grid,
.info-grid,
.support-grid,
.faq-grid { display: grid; gap: 18px; }
.category-grid { grid-template-columns: repeat(3, 1fr); }
.zone-grid { grid-template-columns: repeat(4, 1fr); }
.info-grid { grid-template-columns: repeat(4, 1fr); }
.support-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }

.card,
.zone-card,
.info-card,
.faq-card,
.notice-card,
.service-card {
    background: #15161A;
    border: 1px solid rgba(248,200,74,0.16);
    box-shadow: 0 14px 36px rgba(0,0,0,0.32);
    border-radius: 20px;
    overflow: hidden;
}
.category-card { transition: 0.22s ease; }
.category-card:hover { transform: translateY(-3px); border-color: rgba(248,200,74,0.36); }
.category-card img,
.zone-card img,
.content-img,
.app-section img,
.page-hero-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #1B1C21;
}
.category-card img { max-height: 205px; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 20px; margin-bottom: 10px; }
.card-body p { min-height: 58px; margin-bottom: 12px; }

.brand-strip {
    background: linear-gradient(135deg, rgba(248,200,74,0.10), rgba(21,22,26,1));
    border: 1px solid rgba(248,200,74,0.16);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 28px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
    align-items: center;
}
.brand-strip .main-btn { justify-self: end; }

.info-card { padding: 24px; }
.info-card .num {
    color: var(--gold);
    font-size: 30px;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
}
.info-card h3 { margin-bottom: 8px; font-size: 19px; }

.split-section,
.page-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}
.split-copy,
.page-copy { padding: 10px 0; }
.split-copy h2,
.page-copy h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.split-copy p,
.page-copy p { margin-bottom: 14px; }
.content-img { border-radius: 22px; border: 1px solid rgba(248,200,74,0.16); box-shadow: var(--shadow); max-height: 360px; }

.zone-card { padding: 20px; }
.zone-card img { max-height: 160px; margin-bottom: 16px; border-radius: 16px; }
.zone-card h3 { margin-bottom: 8px; }
.zone-card p { font-size: 14px; }

.app-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    background: #15161A;
    border: 1px solid rgba(248,200,74,0.16);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 28px;
}
.app-section img { border-radius: 18px; max-height: 330px; }
.app-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 18px 0; }
.app-features span { color: var(--gold); background: rgba(248,200,74,0.08); border: 1px solid rgba(248,200,74,0.16); border-radius: 999px; padding: 9px 13px; font-weight: 800; text-align: center; }

.page-hero {
    width: min(1200px, calc(100% - 32px));
    margin: 30px auto 42px;
    min-height: 360px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 26px;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #15161A 0%, #1B1C21 58%, #101115 100%);
    border: 1px solid rgba(248,200,74,0.16);
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.page-hero-copy h1 { font-size: clamp(30px, 4.2vw, 52px); margin: 10px 0 16px; }
.page-hero-copy p { color: #EDEFF5; font-size: 17px; margin-bottom: 12px; }
.eyebrow,
.tag {
    display: inline-flex;
    color: var(--gold);
    background: rgba(248,200,74,0.08);
    border: 1px solid rgba(248,200,74,0.20);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 900;
}
.page-hero-media img { border-radius: 20px; max-height: 300px; box-shadow: 0 14px 26px rgba(0,0,0,0.22); }

.content-section { padding: 32px 0; }
.page-panel {
    background: #15161A;
    border: 1px solid rgba(248,200,74,0.16);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.page-panel h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.page-panel p { margin-bottom: 14px; }
.bullet-list { display: grid; gap: 12px; padding: 0; margin: 18px 0 0; list-style: none; }
.bullet-list li {
    position: relative;
    padding: 14px 16px 14px 42px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(248,200,74,0.10);
    color: var(--muted);
}
.bullet-list li::before {
    content: attr(data-no);
    position: absolute;
    left: 14px;
    top: 14px;
    color: var(--gold);
    font-weight: 900;
}
.notice-card { padding: 24px; background: #1B1C21; }
.notice-card h3 { margin-bottom: 10px; }
.notice-card p { color: #D8DEEA; }

.faq-card { padding: 24px; }
.faq-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card { padding: 24px; }
.service-card h3 { margin-bottom: 8px; }

.contact-list { display: grid; gap: 14px; }
.contact-item { padding: 18px; background: #1B1C21; border: 1px solid rgba(248,200,74,0.14); border-radius: 16px; }
.contact-item strong { color: var(--gold); display: block; margin-bottom: 6px; }

.site-footer {
    background: #08090C;
    color: #D8DEEA;
    border-top: 1px solid rgba(248,200,74,0.12);
    padding: 46px 0 18px;
}
.footer-inner { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr; gap: 28px; }
.footer-logo img { width: 136px; max-height: 56px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p,
.footer-compliance p { color: #D8DEEA; }
.footer-links h3,
.footer-compliance h3 { font-size: 18px; margin-bottom: 14px; }
.footer-links a { display: block; color: #D8DEEA; margin: 8px 0; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 16px; color: var(--hint); font-size: 13px; }

@media (max-width: 1100px) {
    .desktop-header { grid-template-columns: 132px 1fr auto; gap: 12px; }
    .nav-link { padding: 10px 8px; font-size: 13px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .zone-grid,
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .desktop-header { display: none; }
    .mobile-header {
        height: 66px;
        display: grid;
        grid-template-columns: 74px 1fr 88px;
        align-items: center;
        padding: 0 14px;
        background: #101115;
    }
    .menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        border: 1px solid rgba(248,200,74,0.22);
        background: #15161A;
        border-radius: 13px;
        padding: 0 11px;
    }
    .menu-toggle span { display: block; height: 2px; background: var(--gold); border-radius: 2px; }
    .mobile-logo { justify-self: center; }
    .mobile-logo img { width: 118px; max-height: 46px; object-fit: contain; }
    .mobile-register { min-height: 38px; padding: 0 18px; justify-self: end; }
    .drawer-mask {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.56);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }
    .mobile-drawer {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: min(84vw, 340px);
        height: 100vh;
        background: #101115;
        border-right: 1px solid rgba(248,200,74,0.18);
        box-shadow: 16px 0 36px rgba(0,0,0,0.36);
        transform: translateX(-102%);
        transition: 0.28s ease;
        z-index: 10000;
        padding: 18px;
        overflow-y: auto;
    }
    .drawer-open .drawer-mask { opacity: 1; pointer-events: auto; }
    .drawer-open .mobile-drawer { transform: translateX(0); }
    .drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
    .drawer-logo img { width: 132px; max-height: 52px; object-fit: contain; }
    .drawer-close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(248,200,74,0.22); background: #15161A; color: var(--gold); font-size: 24px; }
    .drawer-link { display: block; color: var(--gold); font-weight: 800; padding: 13px 14px; border-radius: 14px; margin: 4px 0; background: rgba(255,255,255,0.025); }
    .drawer-link.active { background: linear-gradient(180deg, rgba(248,200,74,0.12), rgba(248,200,74,0.02)); box-shadow: inset 0 -2px 0 #F8C84A; }
    .drawer-note { margin-top: 18px; padding: 16px; border-radius: 16px; background: #15161A; border: 1px solid rgba(248,200,74,0.16); }
    .drawer-note strong { color: var(--gold); }
    .drawer-note p { font-size: 13px; }

    .banner-slider { margin: 18px auto 26px; width: min(100% - 24px, 1200px); border-radius: 18px; }
    .slide img { height: clamp(220px, 58vw, 360px); }
    .slide-copy { position: static; width: auto; margin: 0; border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0; background: #15161A; }
    .slider-arrow { width: 38px; height: 38px; font-size: 22px; top: 36%; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .slider-dots { bottom: 12px; }

    .section-head { display: block; }
    .section-head .text-link { margin-top: 10px; }
    .category-grid,
    .zone-grid,
    .info-grid,
    .support-grid,
    .faq-grid { grid-template-columns: 1fr; }
    .brand-strip,
    .split-section,
    .page-split,
    .app-section,
    .page-hero { grid-template-columns: 1fr; }
    .brand-strip .main-btn { justify-self: start; }
    .app-features { grid-template-columns: 1fr; }
    .page-hero { padding: 22px; margin-top: 22px; min-height: auto; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
    .container-wide,
    .container,
    .container-narrow { width: min(100% - 24px, 1200px); }
    .section { padding: 32px 0; }
    .card-body,
    .page-panel,
    .notice-card,
    .service-card,
    .faq-card { padding: 18px; }
    .quick-pills a { width: calc(50% - 6px); text-align: center; justify-content: center; }
    .mobile-header { grid-template-columns: 56px 1fr 78px; padding: 0 10px; }
    .mobile-logo img { width: 106px; }
    .mobile-register { padding: 0 14px; min-height: 36px; }
}
