:root {
    --bg: #101115;
    --nav: #101115;
    --panel: #15161A;
    --panel2: #1B1C21;
    --panel3: #202127;
    --gold: #F8C84A;
    --text: #EDEFF5;
    --muted: #B8BEC9;
    --soft: #8E96A6;
    --foot: #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", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.container-wide { width: min(1360px, calc(100% - 28px)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #101115;
    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 { min-height: 76px; display: flex; align-items: center; gap: 20px; }
.brand-logo img { width: 148px; max-height: 48px; object-fit: contain; }
.desktop-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; }
.desktop-nav a {
    color: #F8C84A;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 9px;
    border-radius: 10px;
    white-space: nowrap;
    transition: .25s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
    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;
    min-height: 42px;
    padding: 0 24px;
    background: var(--btn);
    color: #101115;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(248,184,50,0.28);
    font-weight: 800;
    transition: .25s ease;
}
.main-btn:hover { background: linear-gradient(180deg, #FFE96B 0%, #F6A625 100%); transform: translateY(-1px); }
.header-btn { flex: 0 0 auto; }
.mobile-header { display: none; min-height: 66px; align-items: center; justify-content: space-between; padding: 0 14px; }
.menu-toggle { width: 42px; height: 42px; border: 0; background: transparent; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 8px; }
.menu-toggle span { display: block; height: 2px; background: #F8C84A; border-radius: 999px; }
.mobile-logo { position: absolute; left: 50%; transform: translateX(-50%); }
.mobile-logo img { width: 126px; max-height: 42px; object-fit: contain; }
.mobile-reg { min-height: 38px; padding: 0 18px; }
.drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.62); opacity: 0; pointer-events: none; z-index: 10000; transition: .25s ease; }
.mobile-drawer { position: fixed; top: 0; left: 0; width: min(84vw, 320px); height: 100vh; background: #15161A; z-index: 10001; transform: translateX(-105%); transition: .28s ease; box-shadow: 18px 0 36px rgba(0,0,0,.35); overflow-y: auto; }
.drawer-open .mobile-drawer { transform: translateX(0); }
.drawer-open .drawer-mask { opacity: 1; pointer-events: auto; }
.drawer-open { overflow: hidden; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid var(--border); }
.drawer-logo img { width: 132px; max-height: 44px; object-fit: contain; }
.drawer-close { border: 1px solid var(--border); background: #1B1C21; color: #F8C84A; width: 40px; height: 40px; border-radius: 12px; font-size: 28px; line-height: 1; }
.drawer-nav { padding: 14px; display: grid; gap: 8px; }
.drawer-nav a { color: #F8C84A; padding: 12px 14px; border-radius: 12px; background: rgba(248,200,74,0.05); font-weight: 700; }
.drawer-nav a.active { box-shadow: inset 3px 0 0 #F8C84A; background: rgba(248,200,74,0.12); }
h1, h2, h3, .section-title { color: #F8C84A; line-height: 1.25; margin: 0 0 14px; }
p { margin: 0 0 14px; color: var(--muted); }
.text-link { color: #F8C84A; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.text-link::after { content: "›"; font-size: 20px; line-height: 1; }
.eyebrow { color: #F8C84A; display: inline-flex; align-items: center; padding: 4px 12px; border: 1px solid var(--border); border-radius: 999px; background: rgba(248,200,74,0.06); font-weight: 800; margin-bottom: 16px; }
.banner-slider { max-width: 1200px; height: clamp(300px, 46vw, 560px); margin: 28px auto 36px; border-radius: 20px; background: #15161A; box-shadow: 0 18px 40px rgba(0,0,0,0.35); overflow: hidden; position: relative; border: 1px solid var(--border); }
.banner-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .5s ease; }
.banner-slide.is-active { opacity: 1; pointer-events: auto; }
.banner-slide img { width: 100%; height: 100%; object-fit: contain; background: #101115; }
.banner-copy { position: absolute; left: clamp(20px, 5vw, 64px); bottom: clamp(20px, 5vw, 58px); width: min(520px, calc(100% - 40px)); padding: 22px; background: rgba(16,17,21,0.72); border: 1px solid rgba(248,200,74,0.22); border-radius: 18px; backdrop-filter: blur(8px); }
.banner-copy h1 { font-size: clamp(30px, 5vw, 58px); }
.banner-copy p { color: #EDEFF5; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; border: 1px solid var(--border); background: rgba(21,22,26,.85); color: #F8C84A; width: 44px; height: 44px; border-radius: 50%; font-size: 24px; cursor: pointer; }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots { position: absolute; left: 0; right: 0; bottom: 15px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(237,239,245,.45); cursor: pointer; }
.slider-dot.is-active { width: 28px; background: #F8C84A; }
.page-hero { margin-top: 34px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; padding: 30px; border-radius: 24px; background: linear-gradient(135deg, #15161A, #1B1C21); border: 1px solid var(--border); box-shadow: var(--shadow); }
.page-hero h1 { font-size: clamp(32px, 5vw, 58px); }
.page-hero p { color: #EDEFF5; font-size: 18px; }
.page-hero-media { border-radius: 20px; background: #101115; border: 1px solid var(--border); overflow: hidden; padding: 10px; }
.page-hero-media img { width: 100%; max-height: 390px; object-fit: contain; }
.media-section { margin-top: 34px; display: grid; grid-template-columns: 1fr .82fr; gap: 26px; align-items: center; padding: 28px; background: #15161A; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow); }
.media-section.reverse { grid-template-columns: .82fr 1fr; }
.media-copy h2 { font-size: clamp(26px, 3vw, 40px); }
.media-image { background: #101115; border-radius: 18px; border: 1px solid var(--border); padding: 10px; }
.media-image img { width: 100%; max-height: 330px; object-fit: contain; }
.section-block { margin-top: 52px; }
.section-head { max-width: 820px; margin-bottom: 24px; }
.section-head h2 { font-size: clamp(26px, 3vw, 40px); }
.section-head p { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card, .zone-card, .info-card, .review-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: 18px; overflow: hidden; }
.card img { width: 100%; height: 190px; object-fit: contain; background: #101115; padding: 8px; border-bottom: 1px solid rgba(248,200,74,0.10); }
.card-body { padding: 20px; }
.card h3 { font-size: 21px; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { padding: 22px; background: #1B1C21; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); }
.step-card span { color: #F8C84A; font-size: 24px; font-weight: 900; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 22px; }
.review-card strong { color: #F8C84A; display: block; margin-bottom: 10px; }
.faq-list { display: grid; gap: 12px; }
details { background: #15161A; border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px; box-shadow: 0 10px 26px rgba(0,0,0,0.22); }
summary { color: #F8C84A; cursor: pointer; font-weight: 800; }
details p { margin-top: 12px; }
.notice-box { margin-top: 48px; margin-bottom: 48px; padding: 24px; border-radius: 20px; border: 1px solid rgba(248,200,74,0.24); background: linear-gradient(135deg, rgba(248,200,74,0.08), rgba(21,22,26,0.96)); box-shadow: var(--shadow); }
.notice-box h2 { font-size: 26px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 22px; }
.tag-list span { color: #F8C84A; border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; background: rgba(248,200,74,0.06); font-weight: 700; }
.site-footer { background: #08090C; color: #D8DEEA; margin-top: 64px; padding: 46px 0 20px; border-top: 1px solid rgba(248,200,74,0.14); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
.footer-brand img { width: 145px; max-height: 48px; object-fit: contain; margin-bottom: 14px; }
.site-footer h3 { font-size: 18px; }
.site-footer a { color: #D8DEEA; display: block; margin: 8px 0; }
.site-footer a:hover { color: #F8C84A; }
.footer-bottom { border-top: 1px solid rgba(248,200,74,0.12); margin-top: 28px; padding-top: 18px; }
.footer-bottom p { color: #D8DEEA; font-size: 14px; }
@media (max-width: 1180px) {
    .desktop-nav a { font-size: 13px; padding: 12px 6px; }
    .brand-logo img { width: 128px; }
}
@media (max-width: 1020px) {
    .desktop-header { display: none; }
    .mobile-header { display: flex; }
    .page-hero, .media-section, .media-section.reverse { grid-template-columns: 1fr; }
    .card-grid, .card-grid.two, .card-grid.four, .step-grid, .review-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .container { width: min(100% - 22px, 1180px); }
    .banner-slider { margin-top: 18px; border-radius: 14px; height: 420px; }
    .banner-copy { left: 14px; right: 14px; bottom: 48px; width: auto; padding: 16px; }
    .slider-arrow { width: 38px; height: 38px; }
    .page-hero, .media-section { padding: 18px; border-radius: 18px; }
    .page-hero p { font-size: 16px; }
    .card-grid, .card-grid.two, .card-grid.four, .step-grid, .review-grid, .footer-grid { grid-template-columns: 1fr; }
    .card img { height: 170px; }
    .section-block { margin-top: 38px; }
    .footer-grid { gap: 10px; }
}
