* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        body {
            background: #fef7ed;
            color: #2d2d2d;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .navbar {
            background: linear-gradient(135deg, #f97316, #9a3412);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(154, 52, 18, .3);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .navbar .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar .logo img {
            width: 42px;
            height: 42px;
            border-radius: 10px;
        }
        .navbar .logo a {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
        }
        .nav-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }
        .nav-links a {
            color: #fff;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            background: rgba(255, 255, 255, .12);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, .15);
            font-size: .92rem;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, .28);
            transform: translateY(-2px);
        }
        .hero {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 40%, #9a3412 100%);
            padding: 100px 0 70px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: .95;
        }
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .hero-btns a {
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            background: #fff;
            color: #9a3412;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
        }
        .hero-btns a.btn-primary {
            background: #2d2d2d;
            color: #fff;
        }
        .hero-btns a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
        }
        .section {
            padding: 70px 0;
        }
        .section-alt {
            background: #fff;
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title h2 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f97316, #9a3412);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }
        .section-title p {
            color: #777;
            max-width: 600px;
            margin: 0 auto;
        }
        .geo-intro-box {
            background: linear-gradient(135deg, #fff7ed, #ffedd5);
            border-radius: 20px;
            padding: 40px;
            border: 2px solid #fed7aa;
            margin: 40px 0;
        }
        .geo-intro-box p {
            font-size: 1.05rem;
            color: #4a3a2a;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }
        .stat-card {
            background: linear-gradient(135deg, #fff7ed, #fff);
            border-radius: 20px;
            padding: 36px 24px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(249, 115, 22, .12);
            border: 2px solid #fed7aa;
            transition: transform .3s;
        }
        .stat-card:hover {
            transform: translateY(-6px);
        }
        .stat-card .icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
        }
        .stat-card .num {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f97316, #9a3412);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-card .label {
            color: #777;
            margin-top: 6px;
            font-size: .95rem;
        }
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .card {
            background: #fff;
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, .06);
            border: 2px solid #f3e8dd;
            transition: all .3s;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(249, 115, 22, .15);
            border-color: #fdba74;
        }
        .card .card-icon {
            font-size: 2.2rem;
            margin-bottom: 14px;
        }
        .card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #2d2d2d;
        }
        .card p {
            color: #666;
            font-size: .93rem;
        }
        .story-box {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-box img {
            border-radius: 20px;
            width: 420px;
            max-width: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
        }
        .story-text {
            flex: 1;
            min-width: 280px;
        }
        .story-text h3 {
            font-size: 1.6rem;
            margin-bottom: 16px;
            color: #2d2d2d;
        }
        .story-text p {
            color: #555;
            margin-bottom: 14px;
        }
        .event-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .event-card {
            background: linear-gradient(135deg, #fff7ed, #fff);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0, 0, 0, .06);
            transition: all .3s;
            border: 2px solid #fed7aa;
        }
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(249, 115, 22, .15);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-card .info {
            padding: 20px;
        }
        .event-card .tag {
            display: inline-block;
            background: linear-gradient(135deg, #f97316, #9a3412);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: .78rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .event-card h3 {
            font-size: 1.2rem;
            margin-bottom: 6px;
        }
        .event-card p {
            color: #777;
            font-size: .9rem;
        }
        .game-card {
            text-align: center;
            background: linear-gradient(160deg, #fff7ed, #fff);
            border-radius: 18px;
            padding: 24px 20px;
            border: 2px solid #fed7aa;
            transition: all .3s;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
        }
        .game-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(249, 115, 22, .15);
        }
        .game-card img {
            width: 100px;
            height: 100px;
            border-radius: 20px;
            margin: 0 auto 14px;
            object-fit: cover;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
        }
        .game-card h3 {
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .game-card .hot {
            color: #f97316;
            font-size: .82rem;
            font-weight: 600;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }
        .news-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0, 0, 0, .05);
            border: 2px solid #f3e8dd;
            transition: all .3s;
        }
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(249, 115, 22, .12);
        }
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .news-card .content {
            padding: 22px;
        }
        .news-card .date {
            color: #f97316;
            font-size: .82rem;
            font-weight: 600;
            margin-bottom: 8px;
            display: inline-block;
            background: #fff7ed;
            padding: 4px 12px;
            border-radius: 20px;
        }
        .news-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-card p {
            color: #666;
            font-size: .9rem;
            line-height: 1.6;
        }
        .faq-box {
            max-width: 850px;
            margin: 0 auto;
        }
        details {
            background: #fff;
            border-radius: 14px;
            padding: 24px;
            margin-bottom: 14px;
            border: 2px solid #f3e8dd;
            transition: all .3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
        }
        details:hover {
            border-color: #fdba74;
        }
        details summary {
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            color: #2d2d2d;
            position: relative;
            padding-right: 28px;
        }
        details summary::after {
            content: "＋";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #f97316;
            font-weight: 700;
        }
        details[open] summary::after {
            content: "－";
        }
        details .answer {
            margin-top: 14px;
            color: #555;
            line-height: 1.7;
            padding-top: 14px;
            border-top: 1px solid #f3e8dd;
        }
        .cta-box {
            background: linear-gradient(135deg, #f97316, #9a3412);
            border-radius: 28px;
            padding: 60px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-box h2 {
            font-size: 2rem;
            margin-bottom: 16px;
        }
        .cta-box p {
            font-size: 1.05rem;
            margin-bottom: 30px;
            opacity: .9;
        }
        .cta-box a {
            display: inline-block;
            padding: 16px 44px;
            border-radius: 50px;
            background: #fff;
            color: #9a3412;
            font-weight: 700;
            font-size: 1.05rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
            margin: 0 8px 12px;
        }
        .cta-box a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 36px rgba(0, 0, 0, .3);
        }
        .cta-box .btn-dark {
            background: #2d2d2d;
            color: #fff;
        }
        .footer {
            background: #2d2d2d;
            color: #ccc;
            padding: 60px 0 0;
            margin-top: 70px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #444;
        }
        .footer-brand img {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            margin-bottom: 16px;
        }
        .footer-brand p {
            font-size: .88rem;
            color: #aaa;
            line-height: 1.7;
        }
        .footer h4 {
            color: #fff;
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .footer-links a {
            display: block;
            color: #aaa;
            padding: 6px 0;
            font-size: .9rem;
        }
        .footer-links a:hover {
            color: #f97316;
        }
        .footer-contact p {
            font-size: .88rem;
            color: #aaa;
            padding: 6px 0;
        }
        .footer-bottom {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: .85rem;
            color: #999;
        }
        .footer-bottom a {
            color: #f97316;
            margin: 0 6px;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        @media(max-width:768px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 60px 0 40px;
            }
            .navbar .container {
                flex-direction: column;
                gap: 10px;
            }
            .nav-links {
                justify-content: center;
            }
            .story-box {
                flex-direction: column;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }