:root {
    --navy: #211a38;
    --navy-deep: #141025;
    --blue: #9272d3;
    --green: #6ea648;
    --orange: #f4bd55;
    --red: #ca514c;
    --paper: #fbf8f1;
    --ink: #38334a;
    --muted: #777182;
    --line: #e9e1d8;
    --shadow: 0 18px 50px rgba(41, 31, 65, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: -80px;
    padding: 10px 18px;
    border-radius: 0 0 10px 10px;
    color: #fff;
    background: var(--navy);
    transition: top .2s;
}
.skip-link:focus { top: 0; }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 76px;
    color: #fff;
    background: rgba(20, 16, 37, .9);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(12px);
    transition: height .25s, background .25s, box-shadow .25s;
}
.site-header.scrolled {
    height: 66px;
    background: rgba(20, 16, 37, .98);
    box-shadow: 0 6px 24px rgba(10, 7, 22, .28);
}
.nav-wrap {
    width: min(1240px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 188px;
}
.brand img { width: 76px; height: 51px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; }
.brand-copy strong { color: #f8d782; font-size: 16px; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: rgba(255, 255, 255, .48); font-size: 8px; letter-spacing: .18em; }
.main-nav { display: flex; align-items: stretch; align-self: stretch; margin-left: auto; }
.main-nav a {
    position: relative;
    min-width: 100px;
    padding: 0 18px;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .84);
    transition: color .2s, background .2s;
}
.main-nav a::after {
    content: "";
    position: absolute;
    height: 3px;
    inset: auto 20px 0;
    border-radius: 4px 4px 0 0;
    background: #f3c563;
    transform: scaleX(0);
    transition: transform .2s;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255, 255, 255, .06); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-play {
    padding: 11px 22px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: color .2s, background .2s, transform .2s;
}
.nav-play { color: #2b2240; border-color: #f3ce6f; background: linear-gradient(180deg, #ffe38b, #efb84d); box-shadow: 0 7px 18px rgba(219, 161, 59, .22); }
.nav-play:hover { color: #20172e; background: #ffe89e; transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
    position: relative;
    min-height: 720px;
    height: min(92vh, 900px);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
    background: #21183f url("res001/common/fengmian.jpg") right center / auto 100% no-repeat;
}
.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, #21183f 0%, rgba(33, 24, 63, .98) 32%, rgba(33, 24, 63, .82) 52%, rgba(31, 24, 56, .18) 82%),
        linear-gradient(0deg, rgba(19, 14, 35, .72) 0%, transparent 45%);
}
.hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: -2%;
    right: -2%;
    bottom: -36px;
    height: 88px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: var(--paper);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    padding-top: 70px;
    text-align: left;
}
.server-badge {
    width: fit-content;
    margin: 0 0 14px;
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background: rgba(122, 92, 174, .18);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    backdrop-filter: blur(6px);
}
.server-badge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #f2c35e;
    box-shadow: 0 0 0 5px rgba(242, 195, 94, .14);
}
.hero-logo {
    width: 255px;
    max-height: 118px;
    object-fit: contain;
    object-position: left center;
    margin-left: -14px;
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .25));
}
.hero h1 {
    margin: -8px 0 18px;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.12;
    letter-spacing: -.04em;
    text-shadow: 0 4px 18px rgba(8, 5, 20, .3);
}
.hero h1 em { color: #f7c65d; font-style: normal; }
.hero-content > p:not(.server-badge):not(.hero-tip) {
    max-width: 560px;
    margin: 0;
    font-size: clamp(16px, 1.5vw, 20px);
    color: rgba(255, 255, 255, .94);
    text-shadow: 0 2px 8px rgba(8, 5, 20, .35);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
    min-height: 52px;
    padding: 13px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 10px 24px rgba(12, 52, 72, .18);
    transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(12, 52, 72, .25); }
.button-primary {
    color: #2a213e;
    background: linear-gradient(180deg, #ffe183, #efb64a);
    border: 2px solid rgba(255, 255, 255, .18);
}
.button-ghost { color: #fff; border: 1px solid rgba(255, 255, 255, .38); background: rgba(88, 65, 133, .23); }
.button-ghost:hover { background: rgba(91, 67, 139, .5); }
.play-icon { font-size: 12px; }
.hero-meta { margin-top: 20px; display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, .58); font-size: 12px; }
.hero-meta b { color: rgba(255, 255, 255, .86); }
.server-dot { width: 9px; height: 9px; border-radius: 50%; background: #7fd764; box-shadow: 0 0 0 4px rgba(127, 215, 100, .14); }
.hero-visual { position: absolute; z-index: 3; width: min(38vw, 450px); right: 5vw; top: 50%; transform: translateY(-42%); }
.world-preview { position: relative; padding: 14px 14px 17px; border: 1px solid rgba(255, 255, 255, .62); border-radius: 24px; color: var(--navy); background: rgba(255, 252, 245, .94); box-shadow: 0 28px 60px rgba(11, 8, 27, .38); transform: rotate(1.5deg); }
.world-preview img { width: 100%; border-radius: 16px; }
.world-preview strong, .world-preview small { display: block; padding-inline: 7px; }
.world-preview strong { margin-top: 10px; font-size: 18px; }
.world-preview small { margin-top: 2px; color: var(--muted); }
.preview-label { position: absolute; z-index: 2; left: -13px; top: 26px; padding: 7px 14px; border-radius: 9px; color: #fff; background: #9a6bce; box-shadow: 0 6px 0 #65428d; font-size: 12px; font-weight: 800; transform: rotate(-5deg); }
.online-card { position: absolute; right: -18px; bottom: -40px; width: 184px; padding: 14px 18px; border-radius: 17px; color: var(--navy); background: #fff; box-shadow: 0 16px 36px rgba(11, 8, 27, .3); }
.online-card > span { float: left; width: 10px; height: 10px; margin: 7px 10px 20px 0; border-radius: 50%; background: #72c958; }
.online-card small, .online-card strong { display: block; }
.online-card small { color: #978fa0; font-size: 10px; }
.online-card strong { font-size: 15px; }
.scroll-cue {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 49px;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 20px;
    transform: translateX(-50%);
}
.scroll-cue span {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: #fff;
    transform: translateX(-50%);
    animation: scrollCue 1.7s infinite;
}
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 15px); } }

.notice-bar { position: relative; z-index: 5; background: #fffdf8; border-bottom: 1px solid var(--line); }
.notice-inner {
    width: min(1180px, calc(100% - 40px));
    height: 66px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.notice-inner > strong { color: var(--navy); font-size: 14px; white-space: nowrap; }
.notice-icon {
    display: inline-grid;
    place-items: center;
    width: 23px;
    height: 23px;
    margin-right: 8px;
    border-radius: 50%;
    color: #fff;
    background: var(--red);
}
.notice-window { position: relative; height: 28px; overflow: hidden; }
.notice-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(14px);
    color: #3e5261;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    transition: opacity .35s, transform .35s;
}
.notice-item.current { opacity: 1; transform: translateY(0); pointer-events: auto; }
.notice-inner > time { color: #94a2ad; font-size: 13px; }

.section { padding: 104px 24px; }
.section-heading { margin: 0 auto 48px; text-align: center; }
.section-heading .eyebrow { margin: 0 0 5px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .3em; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(32px, 4vw, 48px); line-height: 1.2; letter-spacing: -.03em; }
.section-heading h2 em { color: #9671d3; font-style: normal; }
.section-heading > p:last-child { margin: 12px 0 0; color: var(--muted); }
.section-heading.light h2, .section-heading.light p { color: #fff; }
.section-heading.light > p:last-child { color: rgba(255, 255, 255, .72); }
.section-heading.align-left { margin: 0 0 34px; text-align: left; }

.news-section { background: var(--paper); }
.news-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 34px;
}
.featured-news, .news-panel {
    background: #fff;
    border: 1px solid rgba(22, 68, 94, .09);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.featured-art { position: relative; height: 285px; overflow: hidden; background: #d8eff6; }
.featured-art::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(11, 42, 59, .48)); }
.featured-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.featured-news:hover .featured-art img { transform: scale(1.045); }
.featured-tag { position: absolute; z-index: 2; left: 20px; top: 20px; padding: 6px 12px; border-radius: 999px; color: #fff; background: var(--red); font-size: 12px; font-weight: 800; }
.featured-copy { padding: 25px 28px 29px; }
.featured-copy time { color: #9aa7b0; font-size: 12px; letter-spacing: .1em; }
.featured-copy h3 { margin: 5px 0 9px; color: var(--navy); font-size: 25px; line-height: 1.35; }
.featured-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.featured-copy a { display: inline-block; margin-top: 17px; color: var(--blue); font-size: 14px; font-weight: 800; }
.featured-copy a span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.featured-copy a:hover span { transform: translateX(5px); }
.news-panel { padding: 0 28px 15px; }
.news-tabs { height: 75px; display: flex; align-items: end; gap: 30px; border-bottom: 1px solid var(--line); }
.news-tabs button { position: relative; padding: 0 2px 16px; border: 0; color: #84939e; background: none; cursor: pointer; font-weight: 800; }
.news-tabs button::after { content: ""; position: absolute; height: 3px; inset: auto 0 -1px; border-radius: 4px; background: var(--blue); transform: scaleX(0); transition: transform .2s; }
.news-tabs button:hover, .news-tabs button.active { color: var(--navy); }
.news-tabs button.active::after { transform: scaleX(1); }
.news-list { min-height: 365px; }
.news-row { border-bottom: 1px dashed #dde5e9; }
.news-row:last-child { border-bottom: 0; }
.news-row[hidden] { display: none; }
.news-row a { min-height: 61px; display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 12px; }
.news-row strong { min-width: 0; font-size: 14px; font-weight: 650; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s, transform .2s; }
.news-row time { color: #a5b0b8; font-size: 12px; }
.news-row a:hover strong { color: var(--blue); transform: translateX(3px); }
.category { padding: 3px 6px; border-radius: 5px; text-align: center; font-size: 11px; font-weight: 800; }
.category.notice { color: #2477b0; background: #e2f3ff; }
.category.event { color: #c96119; background: #fff0de; }
.category.guide { color: #4e922c; background: #e8f7df; }

.features-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(157, 117, 211, .1), transparent 24%),
        radial-gradient(circle at 88% 84%, rgba(243, 190, 84, .13), transparent 25%),
        #fbf8f1;
}
.features-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(#8e79a9 1px, transparent 1px); background-size: 24px 24px; }
.features-section > * { position: relative; }
.features-section .section-heading.light h2 { color: var(--navy); }
.features-section .section-heading.light .eyebrow { color: #a87864; }
.features-section .section-heading.light > p:last-child { color: var(--muted); }
.feature-grid { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
    position: relative;
    height: 440px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 24px 44px rgba(5, 25, 38, .28);
    isolation: isolate;
    transition: transform .25s, background .25s;
}
.feature-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .12); }
.feature-card::after { content: ""; position: absolute; z-index: -1; inset: 45% 0 0; background: linear-gradient(transparent, rgba(7, 29, 42, .95)); }
.feature-card img { position: absolute; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .6s; }
.feature-card:hover img { transform: scale(1.05); }
.feature-card.growth img { object-fit: contain; object-position: right bottom; background: linear-gradient(#69bbdb, #b7e784); }
.feature-card.together img { object-position: 48% center; }
.feature-number { position: absolute; top: 16px; right: 20px; color: rgba(255, 255, 255, .58); font: 800 35px/1 Georgia, serif; }
.feature-copy { position: absolute; inset: auto 28px 26px; }
.feature-copy span { color: #8fdbff; font-size: 11px; font-weight: 900; letter-spacing: .22em; }
.feature-copy h3 { margin: 4px 0 8px; font-size: 24px; line-height: 1.3; }
.feature-copy p { margin: 0; color: rgba(255, 255, 255, .72); font-size: 14px; }

.guide-section {
    position: relative;
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(480px, 1.2fr);
    align-items: center;
    gap: 8vw;
    overflow: hidden;
    background: linear-gradient(110deg, #f0e8da, #fffaf2 60%);
}
.guide-section::after { content: ""; position: absolute; z-index: 0; width: 360px; height: 360px; right: -160px; top: -150px; border: 55px solid rgba(138, 101, 191, .08); border-radius: 50%; }
.guide-art { position: relative; z-index: 1; align-self: end; display: flex; justify-content: flex-end; }
.guide-art::before { content: ""; position: absolute; z-index: -1; width: 430px; height: 430px; left: 40%; top: 50%; border-radius: 50%; background: radial-gradient(circle, rgba(123, 199, 75, .34), rgba(123, 199, 75, 0) 68%); transform: translate(-50%, -50%); }
.guide-art img { max-height: 570px; object-fit: contain; filter: drop-shadow(0 22px 22px rgba(47, 90, 37, .18)); }
.guide-content { position: relative; z-index: 1; max-width: 600px; padding-right: 5vw; }
.steps { margin: 0 0 30px; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 50px 1fr; gap: 16px; margin-bottom: 22px; }
.steps li > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg, #ad89df, #7653af); font: 800 21px/1 Georgia, serif; box-shadow: 0 9px 17px rgba(102, 72, 148, .2); }
.steps h3 { margin: 0; color: var(--navy); font-size: 18px; }
.steps p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }

.account-section {
    padding: 105px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 190, 83, .18), transparent 28%),
        linear-gradient(135deg, #fffaf0, #f7efe6);
}
.account-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 58px;
    align-items: stretch;
}
.account-art {
    position: relative;
    min-height: 650px;
    padding: 68px 62px;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(36, 25, 70, .9), rgba(44, 31, 80, .6)),
        url("res001/common/fengmian.jpg") center / cover no-repeat;
    box-shadow: 0 28px 60px rgba(53, 36, 76, .2);
}
.account-art::after {
    content: "";
    position: absolute;
    right: -95px;
    bottom: -125px;
    width: 420px;
    height: 420px;
    border: 80px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}
.account-ribbon {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 9px;
    color: #2d2340;
    background: linear-gradient(180deg, #ffe38a, #edb74d);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 0 rgba(132, 87, 26, .45);
}
.account-logo { width: 215px; margin: 26px 0 2px -10px; filter: drop-shadow(0 8px 10px rgba(12, 7, 27, .3)); }
.account-art h2 { max-width: 500px; margin: 0 0 18px; font-size: clamp(34px, 4vw, 53px); line-height: 1.16; letter-spacing: -.04em; }
.account-art > p { max-width: 480px; margin: 0; color: rgba(255, 255, 255, .72); }
.account-art ul { position: relative; z-index: 2; margin: 42px 0 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.account-art li { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 13px; }
.account-art li b { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .18); border-radius: 13px; color: #f6cf73; background: rgba(255, 255, 255, .08); }
.account-art li span { color: rgba(255, 255, 255, .82); font-size: 14px; }
.account-card {
    min-height: 650px;
    padding: 48px 46px 42px;
    border: 1px solid rgba(70, 53, 92, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 60px rgba(53, 36, 76, .13);
}
.account-heading .eyebrow { margin: 0 0 4px; color: #a87864; font-size: 11px; font-weight: 900; letter-spacing: .25em; }
.account-heading h2 { margin: 0; color: var(--navy); font-size: 35px; }
.account-heading > p:last-child { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.account-tabs { margin: 28px 0 24px; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.account-tabs button { position: relative; padding: 0 10px 14px; border: 0; color: #9a939f; background: none; cursor: pointer; font-weight: 800; }
.account-tabs button::after { content: ""; position: absolute; height: 3px; inset: auto 20px -1px; border-radius: 4px; background: #916bd1; transform: scaleX(0); transition: transform .2s; }
.account-tabs button.active { color: var(--navy); }
.account-tabs button.active::after { transform: scaleX(1); }
.account-form { display: none; }
.account-form.active { display: grid; }
.account-form label:not(.agreement-check) { margin: 12px 0 7px; color: #5d5767; font-size: 13px; font-weight: 700; }
.account-form input[type="text"],
.account-form input[type="password"] {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #e5ded7;
    border-radius: 12px;
    outline: none;
    color: var(--ink);
    background: #fdfcf9;
    font: inherit;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.account-form input::placeholder { color: #b8b2b8; }
.account-form input:focus { border-color: #a787dc; background: #fff; box-shadow: 0 0 0 4px rgba(147, 111, 207, .12); }
.account-form input[aria-invalid="true"] { border-color: #d8645d; box-shadow: 0 0 0 4px rgba(216, 100, 93, .1); }
.agreement-check { margin: 17px 0 0; display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: #817a85; font-size: 12px; cursor: pointer; }
.agreement-check input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: #8d67c7; }
.agreement-check a, .form-note a { color: #8060b2; font-weight: 700; }
.account-submit { height: 54px; margin-top: 20px; border: 0; border-radius: 13px; color: #2b213b; background: linear-gradient(180deg, #ffe08a, #efb54b); box-shadow: 0 7px 0 #c88b34, 0 14px 24px rgba(194, 132, 47, .18); cursor: pointer; font: 800 15px/1 inherit; transition: transform .15s, filter .15s, box-shadow .15s; }
.account-submit:hover { filter: brightness(1.04); transform: translateY(-2px); box-shadow: 0 9px 0 #c88b34, 0 17px 26px rgba(194, 132, 47, .2); }
.account-submit:active { transform: translateY(4px); box-shadow: 0 3px 0 #c88b34; }
.account-submit:disabled { color: #8d8490; background: #e6e0da; box-shadow: 0 5px 0 #cec6bf; cursor: wait; }
.form-note { margin: 17px 0 0; color: #99929d; font-size: 11px; text-align: center; }
.form-status { min-height: 24px; margin: 10px 0 0; padding: 0; border-radius: 8px; color: #716977; font-size: 12px; text-align: center; }
.form-status.success { padding: 7px 10px; color: #397b36; background: #e7f5e4; }
.form-status.error { padding: 7px 10px; color: #a9433f; background: #fde9e7; }

.cta-section {
    min-height: 390px;
    padding: 70px 24px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(28, 20, 52, .76), rgba(21, 15, 41, .86)),
        url("res001/common/fengmian.jpg") center 58% / cover no-repeat;
    background-attachment: fixed;
}
.cta-content > p { margin: 0; font-size: 11px; font-weight: 900; letter-spacing: .35em; color: #a9e7ff; }
.cta-content h2 { margin: 12px 0 28px; font-size: clamp(30px, 4vw, 48px); }
.button-light { color: var(--navy); background: #fff; }

.site-footer { padding: 50px 24px; color: rgba(255, 255, 255, .65); background: #141025; }
.footer-inner { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-brand img { width: 92px; }
.footer-brand strong { font-size: 14px; white-space: nowrap; }
.footer-brand strong a { transition: color .2s; }
.footer-brand strong a:hover { color: #f2cb6f; }
.health-notice strong { color: rgba(255, 255, 255, .88); font-size: 13px; }
.health-notice p { margin: 3px 0; font-size: 12px; }
.company-record { margin-top: 10px; color: rgba(255, 255, 255, .82); }

.floating-play {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    min-width: 118px;
    height: 52px;
    padding: 0 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #f7a72c, #e96721);
    box-shadow: 0 10px 26px rgba(218, 92, 24, .38);
    font-size: 13px;
}
.floating-play span { font-size: 10px; }
.back-top {
    position: fixed;
    z-index: 75;
    right: 28px;
    bottom: 90px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(23, 59, 89, .12);
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 24px rgba(24, 55, 74, .18);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 1050px) {
    .main-nav a { min-width: auto; padding: 0 12px; font-size: 14px; }
    .nav-play { display: none; }
    .floating-play { display: flex; }
    .hero-content { width: min(920px, calc(100% - 48px)); }
    .hero-visual { width: 37vw; right: 3vw; }
    .hero-content > p:not(.server-badge):not(.hero-tip) { max-width: 50vw; }
    .footer-inner { grid-template-columns: 180px 1fr; }
}

@media (max-width: 820px) {
    .site-header, .site-header.scrolled { height: 64px; }
    .nav-wrap { width: calc(100% - 28px); gap: 16px; }
    .brand img { width: 74px; height: 42px; }
    .brand-copy strong { font-size: 14px; }
    .menu-toggle { margin-left: auto; width: 42px; height: 42px; padding: 10px; display: grid; align-content: center; gap: 5px; border: 0; border-radius: 9px; color: #fff; background: rgba(255, 255, 255, .1); }
    .menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
    .menu-toggle.open > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open > span:nth-child(2) { opacity: 0; }
    .menu-toggle.open > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 64px 0 auto; padding: 10px 18px 18px; display: grid; align-self: auto; background: rgba(9, 36, 55, .98); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .25s, opacity .2s; }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav a { min-height: 48px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .main-nav a::after { display: none; }
    .hero { min-height: 700px; height: 92svh; background-position: 58% center; background-size: cover; }
    .hero::before { background: linear-gradient(90deg, rgba(31, 23, 60, .94), rgba(31, 23, 60, .48)), linear-gradient(0deg, rgba(19, 14, 35, .76), transparent 45%); }
    .hero-content { padding-top: 52px; }
    .hero-logo { width: 255px; }
    .hero h1 { margin-top: -10px; }
    .hero-visual { display: none; }
    .hero-content > p:not(.server-badge):not(.hero-tip) { max-width: 610px; }
    .news-layout { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { height: 390px; }
    .guide-section { grid-template-columns: .72fr 1.28fr; gap: 25px; padding-inline: 0 24px; }
    .guide-art img { max-height: 500px; transform: translateX(-10%); }
    .account-wrap { grid-template-columns: 1fr; gap: 24px; }
    .account-art { min-height: 500px; }
    .account-card { min-height: auto; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-brand { justify-content: center; }
    .cta-section { background-attachment: scroll; }
}

@media (max-width: 580px) {
    .brand { min-width: auto; }
    .hero { min-height: 670px; }
    .hero-content { width: calc(100% - 34px); text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero-logo { object-position: center; margin-left: 0; }
    .hero-actions { width: 100%; justify-content: center; }
    .hero-actions .button { width: min(280px, 100%); }
    .hero-tip { max-width: 280px; }
    .scroll-cue { display: none; }
    .notice-inner { width: calc(100% - 28px); gap: 12px; grid-template-columns: auto 1fr; }
    .notice-inner > strong { font-size: 0; }
    .notice-inner > strong .notice-icon { margin: 0; font-size: 14px; }
    .notice-inner > time { display: none; }
    .section { padding: 78px 16px; }
    .section-heading { margin-bottom: 34px; }
    .featured-art { height: 230px; }
    .featured-copy { padding: 21px 20px 24px; }
    .featured-copy h3 { font-size: 22px; }
    .news-panel { padding: 0 17px 10px; }
    .news-tabs { gap: 23px; }
    .news-row a { grid-template-columns: 42px minmax(0, 1fr); gap: 10px; }
    .news-row time { display: none; }
    .feature-card { height: 370px; }
    .guide-section { grid-template-columns: 1fr; padding: 72px 22px 78px; }
    .guide-art { display: none; }
    .guide-content { padding: 0; }
    .account-section { padding: 76px 16px; }
    .account-art { min-height: 410px; padding: 42px 30px; }
    .account-art h2 { font-size: 36px; }
    .account-art ul { margin-top: 28px; }
    .account-card { padding: 34px 22px 30px; }
    .account-heading h2 { font-size: 30px; }
    .footer-brand img { width: 82px; }
    .floating-play { right: 16px; bottom: 16px; }
    .back-top { right: 20px; bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
