html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #24003f;
    color: #ffffff;
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
    line-height: 1.72;
}
* {
    box-sizing: border-box;
}
a {
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
body.drawer-open {
    overflow-x: hidden;
}
.emoji-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.emoji-bg span {
    position: absolute;
    font-size: 28px;
    opacity: 0.12;
    animation: floatEmoji 12s linear infinite;
    filter: drop-shadow(0 0 10px rgba(37,223,245,.25));
}
.emoji-bg span:nth-child(1) { left: 3%; animation-delay: -1s; animation-duration: 14s; }
.emoji-bg span:nth-child(2) { left: 13%; animation-delay: -7s; animation-duration: 16s; }
.emoji-bg span:nth-child(3) { left: 24%; animation-delay: -4s; animation-duration: 13s; }
.emoji-bg span:nth-child(4) { left: 36%; animation-delay: -10s; animation-duration: 17s; }
.emoji-bg span:nth-child(5) { left: 47%; animation-delay: -5s; animation-duration: 15s; }
.emoji-bg span:nth-child(6) { left: 58%; animation-delay: -12s; animation-duration: 18s; }
.emoji-bg span:nth-child(7) { left: 67%; animation-delay: -3s; animation-duration: 14s; }
.emoji-bg span:nth-child(8) { left: 76%; animation-delay: -9s; animation-duration: 16s; }
.emoji-bg span:nth-child(9) { left: 84%; animation-delay: -6s; animation-duration: 17s; }
.emoji-bg span:nth-child(10) { left: 91%; animation-delay: -11s; animation-duration: 15s; }
.emoji-bg span:nth-child(11) { left: 97%; animation-delay: -2s; animation-duration: 19s; }
@keyframes floatEmoji {
    0% { transform: translate3d(0, 110vh, 0) rotate(0deg); opacity: 0; }
    12% { opacity: .16; }
    50% { transform: translate3d(22px, 45vh, 0) rotate(12deg); }
    100% { transform: translate3d(-18px, -12vh, 0) rotate(28deg); opacity: 0; }
}
main {
    position: relative;
    z-index: 1;
}
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(36, 0, 63, 0.72);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.site-logo img {
    max-height: 46px;
    width: auto;
}
.nav-core {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-core a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
    transition: .22s ease;
}
.nav-core a:hover,
.nav-core a.active {
    color: #25dff5;
    background: rgba(37, 223, 245, 0.12);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.main-btn,
.text-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 6px;
    background: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 14px 30px rgba(240,107,234,0.26);
    transition: .22s ease;
}
.main-btn:hover,
.text-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(37,223,245,0.30);
}
.header-btn {
    min-height: 40px;
    padding: 8px 16px;
    white-space: nowrap;
    font-size: 14px;
}
.menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(191, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 10px;
}
.menu-toggle span {
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: #ffffff;
    display: block;
}
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 0, 18, .58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10000;
    transition: .24s ease;
}
.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 88vw);
    height: 100vh;
    padding: 20px;
    background: linear-gradient(180deg, #2d0052 0%, #16002b 100%);
    border-left: 1px solid rgba(191,255,255,.16);
    box-shadow: -28px 0 70px rgba(0,0,0,.46);
    transform: translateX(105%);
    z-index: 10001;
    transition: transform .26s ease;
    overflow-y: auto;
}
.drawer-open .drawer-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.drawer-open .side-drawer {
    transform: translateX(0);
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(191,255,255,.14);
}
.drawer-logo img {
    max-height: 44px;
}
.drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(191,255,255,.18);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.drawer-nav {
    display: grid;
    gap: 8px;
    padding: 18px 0;
}
.drawer-nav a {
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(191,255,255,.08);
    transition: .22s ease;
}
.drawer-nav a:hover,
.drawer-nav a.active {
    color: #25dff5;
    border-color: rgba(37,223,245,.28);
    background: rgba(37,223,245,.12);
}
.drawer-note {
    color: #d8c7ff;
    font-size: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(60,0,100,.56);
    border: 1px solid rgba(191,255,255,.14);
}
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(35,0,63,0.55) 0%, rgba(35,0,63,0.78) 58%, rgba(141,0,255,0.92) 100%),
        url("背景.webp") center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 230px;
    background: linear-gradient(180deg, rgba(141,0,255,0) 0%, rgba(157,0,255,0.95) 100%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 96px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 48px;
    align-items: center;
}
.hero-kicker,
.section-kicker {
    color: #25dff5;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero-section h1 {
    font-size: clamp(46px, 7vw, 84px);
    line-height: 1.05;
    color: #bfffff;
    margin: 0 0 16px;
    text-shadow: 0 0 26px rgba(37,223,245,.35);
}
.hero-subtitle {
    color: #ffffff;
    font-size: clamp(18px, 2.3vw, 26px);
    margin: 0 0 16px;
}
.hero-text {
    color: #d8c7ff;
    font-size: 17px;
    max-width: 680px;
    margin-bottom: 28px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.hero-link,
.card-link,
.plain-link {
    color: #25dff5;
    text-decoration: none;
    font-weight: 700;
}
.hero-link:hover,
.card-link:hover,
.plain-link:hover {
    color: #f06bea;
}
.hero-visual {
    position: relative;
    border-radius: 34px;
    padding: 18px;
    background: radial-gradient(circle at 30% 20%, rgba(240,107,234,.28), rgba(37,223,245,.08) 45%, rgba(60,0,100,.18) 100%);
    border: 1px solid rgba(191,255,255,.16);
    box-shadow: 0 34px 90px rgba(0,0,0,.38);
}
.hero-visual img {
    width: 100%;
    object-fit: contain;
}
.section {
    padding: 84px 20px;
    position: relative;
}
.section.tight {
    padding-top: 42px;
}
.container {
    width: min(1200px, 100%);
    margin: 0 auto;
}
.section-head {
    max-width: 850px;
    margin-bottom: 34px;
}
.center-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
h1,
h2,
h3,
.section-title {
    color: #bfffff;
    text-shadow: 0 0 18px rgba(37,223,245,0.20);
}
.section-title {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;
    margin: 0 0 14px;
}
.section-lead {
    color: #d8c7ff;
    font-size: 17px;
    margin: 0;
}
.highlight-strip {
    margin-top: -74px;
    position: relative;
    z-index: 2;
}
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(110deg, rgba(240,107,234,.78), rgba(74,0,127,.92), rgba(37,223,245,.56));
    border: 1px solid rgba(191,255,255,.18);
    box-shadow: 0 24px 70px rgba(37,223,245,.18), inset 0 -4px 0 rgba(37,223,245,.45);
}
.highlight-item {
    padding: 26px;
    min-height: 150px;
    border-right: 1px solid rgba(255,255,255,.18);
}
.highlight-item:last-child {
    border-right: 0;
}
.highlight-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
}
.highlight-item p {
    margin: 0;
    color: #f3eaff;
    font-size: 14px;
}
.capsule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.capsule-card {
    display: block;
    text-decoration: none;
    padding: 20px;
    border-radius: 22px;
    background: rgba(60, 0, 100, 0.56);
    border: 1px solid rgba(191,255,255,0.14);
    box-shadow: 0 18px 46px rgba(0,0,0,0.32);
    backdrop-filter: blur(10px);
    transition: .22s ease;
}
.capsule-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37,223,245,.35);
    box-shadow: 0 22px 56px rgba(37,223,245,.16);
}
.capsule-num {
    color: #25dff5;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 10px;
}
.capsule-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}
.capsule-card p {
    margin: 0;
    color: #d8c7ff;
    font-size: 14px;
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}
.content-box {
    padding: 34px;
    border-radius: 30px;
    background: rgba(60, 0, 100, 0.56);
    border: 1px solid rgba(191,255,255,0.14);
    box-shadow: 0 18px 46px rgba(0,0,0,0.32);
    backdrop-filter: blur(10px);
}
.content-box p {
    color: #d8c7ff;
    margin: 0 0 16px;
}
.content-box ul,
.notice-panel ul,
.help-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.content-box li,
.notice-panel li,
.help-list li {
    color: #ffffff;
    padding-left: 24px;
    position: relative;
}
.content-box li::before,
.notice-panel li::before,
.help-list li::before {
    content: "◆";
    color: #25dff5;
    position: absolute;
    left: 0;
    top: 0;
}
.content-img {
    border-radius: 30px;
    padding: 14px;
    background: radial-gradient(circle at 50% 0%, rgba(37,223,245,.16), rgba(60,0,100,.34));
    border: 1px solid rgba(191,255,255,.14);
    box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.content-img img {
    width: 100%;
    object-fit: contain;
    border-radius: 22px;
}
.poster-banner {
    max-width: 1040px;
    margin: 0 auto;
    border-radius: 32px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(37,223,245,.28), rgba(240,107,234,.22));
    border: 1px solid rgba(191,255,255,.16);
    box-shadow: 0 28px 80px rgba(0,0,0,.36);
}
.poster-banner img {
    width: 100%;
    object-fit: contain;
    border-radius: 24px;
}
.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.game-card,
.card,
.zone-card,
.info-card,
.review-card,
.faq-card,
.news-card {
    background: rgba(60, 0, 100, 0.56);
    border: 1px solid rgba(191,255,255,0.14);
    box-shadow: 0 18px 46px rgba(0,0,0,0.32);
    backdrop-filter: blur(10px);
    border-radius: 24px;
}
.game-card {
    padding: 14px;
    transition: .22s ease;
}
.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37,223,245,.32);
    box-shadow: 0 24px 58px rgba(37,223,245,.16);
}
.game-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(22,0,43,.45);
}
.game-card h3 {
    margin: 14px 0 6px;
    font-size: 18px;
}
.game-card p {
    color: #d8c7ff;
    margin: 0 0 10px;
    font-size: 14px;
}
.activity-grid,
.review-grid,
.faq-grid,
.feature-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.activity-card,
.review-card,
.faq-card,
.info-card,
.news-card {
    padding: 24px;
}
.activity-card img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 20px;
    margin-bottom: 18px;
    background: rgba(22,0,43,.4);
}
.activity-card p,
.review-card p,
.faq-card p,
.info-card p,
.news-card p {
    color: #d8c7ff;
}
.review-card strong {
    color: #25dff5;
}
.faq-card h3 {
    margin-top: 0;
}
.notice-panel {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(45,0,82,.86), rgba(74,0,127,.66));
    border: 1px solid rgba(191,255,255,.16);
    box-shadow: 0 20px 58px rgba(0,0,0,.32);
}
.notice-panel p {
    color: #d8c7ff;
}
.page-hero {
    padding: 88px 20px 54px;
    background:
        radial-gradient(circle at 18% 0%, rgba(37,223,245,.17), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(240,107,234,.20), transparent 34%),
        linear-gradient(180deg, #2d0052 0%, #24003f 100%);
}
.page-hero-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 40px;
    align-items: center;
}
.page-hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.12;
    margin: 0 0 16px;
}
.page-hero p {
    color: #d8c7ff;
    font-size: 17px;
}
.page-visual {
    border-radius: 28px;
    padding: 14px;
    border: 1px solid rgba(191,255,255,.14);
    background: rgba(60,0,100,.45);
    box-shadow: 0 28px 74px rgba(0,0,0,.34);
}
.page-visual img {
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.article {
    width: min(1000px, 100%);
    margin: 0 auto;
}
.article h2 {
    margin-top: 38px;
    font-size: 30px;
}
.article p {
    color: #d8c7ff;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0;
}
.article-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(60, 0, 100, 0.56);
    border: 1px solid rgba(191,255,255,0.14);
}
.article-card h3 {
    margin-top: 0;
}
.article-card p {
    margin-bottom: 0;
}
.service-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    margin: 24px 0;
    color: #d8c7ff;
}
.service-table th,
.service-table td {
    padding: 15px 16px;
    border: 1px solid rgba(191,255,255,.14);
    text-align: left;
}
.service-table th {
    color: #bfffff;
    background: rgba(37,223,245,.10);
}
.service-table td {
    background: rgba(60,0,100,.46);
}
.site-footer {
    position: relative;
    z-index: 1;
    background: #140024;
    color: #d8c7ff;
    padding: 48px 20px 0;
}
.footer-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.1fr;
    gap: 34px;
}
.footer-logo img {
    max-height: 46px;
    margin-bottom: 16px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
}
.footer-links a {
    color: #d8c7ff;
    text-decoration: none;
}
.footer-links a:hover {
    color: #25dff5;
}
.footer-safe {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(191,255,255,.12);
    background: rgba(60,0,100,.34);
}
.footer-safe strong {
    color: #bfffff;
}
.footer-bottom {
    margin-top: 36px;
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid rgba(191,255,255,.10);
    color: #b99ee8;
}
@media (max-width: 1100px) {
    .nav-core {
        display: none;
    }
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .capsule-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 820px) {
    .header-inner {
        min-height: 64px;
        padding: 0 14px;
        gap: 10px;
    }
    .site-logo img {
        max-height: 38px;
    }
    .header-actions {
        gap: 8px;
    }
    .header-btn {
        min-height: 36px;
        padding: 7px 10px;
        font-size: 13px;
    }
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    .hero-inner,
    .split,
    .page-hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-inner {
        padding-top: 52px;
        gap: 24px;
    }
    .hero-section {
        min-height: auto;
    }
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlight-item:nth-child(2) {
        border-right: 0;
    }
    .highlight-item {
        padding: 20px;
    }
    .capsule-grid,
    .activity-grid,
    .review-grid,
    .faq-grid,
    .feature-grid,
    .news-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .section {
        padding: 58px 16px;
    }
    .content-box {
        padding: 24px;
    }
    .page-hero {
        padding: 58px 16px 38px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .emoji-bg span {
        font-size: 22px;
    }
    .emoji-bg span:nth-child(n+7) {
        display: none;
    }
}
@media (max-width: 420px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    .highlight-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }
    .highlight-item:last-child {
        border-bottom: 0;
    }
    .game-card {
        padding: 10px;
    }
    .game-card h3 {
        font-size: 16px;
    }
}
