@charset "UTF-8";
:root {
    --bg: #24003f;
    --bg-deep: #16002b;
    --bg-card: rgba(60,0,100,.56);
    --cyan: #25dff5;
    --pink: #f06bea;
    --violet: #8f7bff;
    --title: #bfffff;
    --text: #ffffff;
    --muted: #d8c7ff;
    --soft: #b99ee8;
    --border: rgba(191,255,255,.14);
    --shadow: 0 18px 46px rgba(0,0,0,.32);
    --radius: 18px;
    --container: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 12% 8%, rgba(143,123,255,.20), transparent 34%),
      radial-gradient(circle at 88% 18%, rgba(240,107,234,.14), transparent 32%),
      linear-gradient(180deg, #24003f 0%, #1d0035 44%, #16002b 100%);
    color: var(--text);
    font-family: "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.75;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(36,0,63,.78);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    border-bottom: 1px solid rgba(191,255,255,.08);
}
.header-inner {
    max-width: 1280px;
    min-height: 72px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-logo { flex: 0 0 auto; }
.site-logo img { width: auto; max-height: 46px; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; }
.nav-core a { text-decoration: none; padding: 8px 12px; border-radius: 999px; white-space: nowrap; font-size: 15px; }
.nav-core a:hover, .nav-core a.active { color: var(--cyan); background: rgba(37,223,245,.12); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.main-btn, .ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: .25s ease;
}
.main-btn { background: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%); color: #fff; box-shadow: 0 14px 30px rgba(240,107,234,.26); }
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37,223,245,.30); }
.ghost-btn { border: 1px solid rgba(37,223,245,.5); color: var(--cyan); background: rgba(37,223,245,.08); }
.ghost-btn:hover { background: rgba(37,223,245,.16); }
.menu-toggle { width: 44px; height: 44px; padding: 10px; border: 1px solid var(--border); border-radius: 10px; background: rgba(143,123,255,.12); cursor: pointer; display: grid; align-content: center; gap: 5px; }
.menu-toggle span { display: block; height: 2px; border-radius: 2px; background: #fff; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(5,0,20,.68); opacity: 0; visibility: hidden; transition: .25s ease; z-index: 10000; }
.site-drawer { position: fixed; top: 0; right: 0; width: min(390px, 90vw); height: 100vh; overflow-y: auto; padding: 18px; background: linear-gradient(180deg, #2d0052, #16002b); transform: translateX(105%); transition: .3s ease; z-index: 10001; box-shadow: -18px 0 60px rgba(0,0,0,.45); }
.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
.drawer-open .site-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.drawer-head img { max-height: 46px; width: auto; }
.drawer-close { width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); font-size: 30px; line-height: 1; cursor: pointer; }
.drawer-nav { display: grid; gap: 6px; padding: 18px 0; }
.drawer-nav a { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 10px; text-decoration: none; color: var(--muted); background: rgba(255,255,255,.025); }
.drawer-nav a:hover, .drawer-nav a.active { color: var(--cyan); background: rgba(37,223,245,.10); }
.drawer-note { color: var(--soft); font-size: 13px; padding: 15px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.03); }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 78px 0; position: relative; }
.section-sm { padding: 52px 0; }
.section-kicker { display: inline-block; margin-bottom: 8px; color: var(--pink); font-weight: 700; letter-spacing: .08em; }
h1, h2, h3, .section-title { margin-top: 0; color: var(--title); line-height: 1.28; text-shadow: 0 0 18px rgba(37,223,245,.20); }
h1 { font-size: clamp(36px, 6vw, 70px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 20px; }
p { margin: 0 0 1em; color: var(--muted); }
.lead { font-size: clamp(17px, 2.2vw, 21px); color: #f2ebff; }
.text-link { color: var(--cyan); text-decoration: none; font-weight: 700; }
.text-link:hover { text-decoration: underline; }
.card, .zone-card, .info-card, .review-card, .faq-item, .content-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
}
.home-hero {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    position: relative;
    isolation: isolate;
    background-image: linear-gradient(90deg, rgba(22,0,43,.93) 0%, rgba(36,0,63,.78) 48%, rgba(36,0,63,.36) 100%), url('背景.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.home-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(180deg, transparent, #24003f); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 48px; padding: 72px 0 100px; }
.hero-copy { max-width: 700px; }
.hero-copy .eyebrow { color: var(--pink); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .subtitle { color: var(--cyan); font-size: clamp(18px, 2.5vw, 25px); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-points span { padding: 8px 12px; border: 1px solid rgba(191,255,255,.20); border-radius: 999px; color: var(--muted); background: rgba(36,0,63,.46); }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 12% 8%; background: radial-gradient(circle, rgba(37,223,245,.30), rgba(240,107,234,.12) 42%, transparent 70%); filter: blur(22px); z-index: -1; }
.hero-visual img { width: 100%; max-height: 590px; object-fit: contain; filter: drop-shadow(0 28px 45px rgba(0,0,0,.5)); }
.highlight-strip { margin-top: -36px; position: relative; z-index: 3; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.highlight-item { padding: 20px; border: 1px solid rgba(37,223,245,.22); border-radius: 14px; background: linear-gradient(135deg, rgba(45,0,82,.92), rgba(60,0,100,.74)); box-shadow: 0 16px 35px rgba(0,0,0,.28); }
.highlight-item h3 { margin-bottom: 8px; font-size: 18px; }
.highlight-item p { margin: 0; font-size: 14px; }
.section-head { max-width: 800px; margin-bottom: 30px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick-card { padding: 22px; min-height: 185px; display: flex; flex-direction: column; }
.quick-card p { flex: 1; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 42px; }
.split.reverse .split-media { order: 2; }
.split-media img, .content-img { width: 100%; max-height: 520px; object-fit: contain; border-radius: 18px; }
.feature-list { display: grid; gap: 10px; padding: 0; margin: 22px 0; list-style: none; }
.feature-list li { position: relative; padding: 12px 14px 12px 42px; border-radius: 12px; color: var(--muted); background: rgba(255,255,255,.035); border: 1px solid rgba(191,255,255,.08); }
.feature-list li::before { content: "✓"; position: absolute; left: 15px; color: var(--cyan); font-weight: 800; }
.poster-banner { width: min(1040px, calc(100% - 40px)); margin: 0 auto; padding: 10px; border-radius: 22px; background: linear-gradient(135deg, rgba(37,223,245,.28), rgba(240,107,234,.28)); box-shadow: 0 24px 70px rgba(0,0,0,.38); }
.poster-banner img { width: 100%; border-radius: 16px; object-fit: contain; }
.poster-caption { width: min(900px, calc(100% - 40px)); text-align: center; margin: 18px auto 0; }
.game-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.game-card { overflow: hidden; transition: .25s ease; }
.game-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(37,223,245,.18); }
.game-card img { width: 100%; aspect-ratio: 1/1; object-fit: contain; background: rgba(22,0,43,.42); }
.game-card-body { padding: 17px; }
.game-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.game-card-body p { font-size: 14px; min-height: 76px; }
.dual-grid, .news-grid, .security-grid, .review-grid, .faq-grid, .info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.content-panel { padding: 28px; overflow: hidden; }
.content-panel img { width: 100%; max-height: 320px; object-fit: contain; margin-bottom: 20px; border-radius: 14px; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-card { padding: 23px; }
.review-card .review-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 18px; color: var(--soft); font-size: 13px; }
.stars { color: #ffd96a; letter-spacing: .12em; }
.faq-grid { grid-template-columns: 1fr 1fr; }
.faq-item { padding: 22px; }
.faq-item h3 { margin-bottom: 10px; }
.notice-box { padding: 24px 26px; border-left: 4px solid var(--cyan); border-radius: 14px; background: linear-gradient(90deg, rgba(37,223,245,.10), rgba(143,123,255,.08)); color: var(--muted); }
.inner-hero { padding: 86px 0 54px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(191,255,255,.08); }
.inner-hero::before { content: ""; position: absolute; width: 540px; height: 540px; right: -170px; top: -270px; border-radius: 50%; background: radial-gradient(circle, rgba(37,223,245,.25), rgba(143,123,255,.12) 45%, transparent 70%); }
.inner-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 38px; }
.inner-hero h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 16px; }
.inner-hero-media img { max-height: 390px; margin: 0 auto; object-fit: contain; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; color: var(--soft); font-size: 14px; }
.breadcrumb a { color: var(--cyan); text-decoration: none; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.article-main { display: grid; gap: 22px; }
.article-section { padding: 28px; }
.article-section h2 { font-size: clamp(25px, 3vw, 34px); }
.article-section p:last-child { margin-bottom: 0; }
.side-panel { position: sticky; top: 96px; display: grid; gap: 18px; }
.side-card { padding: 22px; }
.side-card ul { padding-left: 20px; margin: 0; color: var(--muted); }
.side-card li + li { margin-top: 8px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.tag { padding: 7px 10px; color: var(--pink); background: rgba(240,107,234,.08); border: 1px solid rgba(240,107,234,.16); border-radius: 999px; font-size: 13px; }
.table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; min-width: 650px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(191,255,255,.08); color: var(--muted); }
th { color: var(--title); background: rgba(37,223,245,.07); }
.site-footer { background: #140024; color: var(--muted); border-top: 1px solid rgba(191,255,255,.08); }
.footer-inner { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; padding: 58px 0 38px; display: grid; grid-template-columns: 1.15fr 1.85fr; gap: 48px; }
.footer-brand img { max-height: 52px; width: auto; margin-bottom: 18px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.footer-links h3 { font-size: 17px; }
.footer-links a { display: block; margin: 8px 0; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(191,255,255,.08); padding: 18px 20px; text-align: center; }
.footer-bottom p { margin: 0; font-size: 13px; }
.mobile-quick { display: none; }
@media (max-width: 1080px) {
    .nav-core { display: none; }
    .header-inner { gap: 12px; }
    .hero-grid, .inner-hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 780px; }
    .hero-visual { max-width: 720px; margin: 0 auto; }
    .quick-grid { grid-template-columns: repeat(3, 1fr); }
    .game-grid { grid-template-columns: repeat(4, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: 1fr; }
    .side-panel { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
    .section { padding: 62px 0; }
    .highlight-grid, .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .split, .dual-grid, .news-grid, .security-grid, .faq-grid, .footer-inner { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .game-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    body { padding-bottom: 72px; }
    .header-inner { min-height: 64px; padding: 9px 12px; }
    .site-logo img { max-height: 38px; max-width: 122px; }
    .header-actions { gap: 7px; }
    .header-cta { min-height: 40px; padding: 8px 12px; font-size: 13px; }
    .menu-toggle { width: 40px; height: 40px; }
    .container { width: min(100% - 28px, var(--container)); }
    .home-hero { min-height: auto; background-position: 58% center; }
    .hero-grid { padding: 62px 0 90px; gap: 28px; }
    .hero-copy h1 { font-size: 43px; }
    .hero-copy .subtitle { font-size: 18px; }
    .hero-actions { align-items: stretch; }
    .hero-actions a { width: 100%; }
    .highlight-strip { margin-top: -42px; }
    .highlight-grid, .quick-grid, .review-grid, .side-panel { grid-template-columns: 1fr; }
    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .game-card-body { padding: 14px; }
    .game-card-body p { min-height: auto; }
    .content-panel, .article-section, .side-card { padding: 21px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .mobile-quick { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 62px; padding-bottom: env(safe-area-inset-bottom); background: rgba(20,0,36,.96); backdrop-filter: blur(14px); border-top: 1px solid rgba(191,255,255,.12); }
    .mobile-quick a { display: grid; place-items: center; align-content: center; gap: 2px; color: var(--muted); text-decoration: none; font-size: 12px; }
    .mobile-quick span { color: var(--cyan); font-size: 18px; line-height: 1; }
}
@media (max-width: 430px) {
    .site-logo img { max-width: 102px; }
    .header-cta { padding: 8px 9px; font-size: 12px; }
    .footer-links { grid-template-columns: 1fr; }
}
