
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #0a0908;
            color: #c9b8a8;
            font-family: 'Times New Roman', 'Segoe UI', serif;
            line-height: 1.7;
            min-height: 100vh;
            padding: 20px;
            opacity: 0;
            animation: fadeIn 0.2s ease forwards;
        }
        @keyframes fadeIn { to { opacity: 1; } }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            background: rgba(10, 9, 8, 0.7);
            backdrop-filter: blur(2px);
            border: 1px solid #3a2c1e;
            border-radius: 32px;
            padding: 30px 25px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.9), 0 0 0 1px #4f3a26 inset;
        }
        .top-herald {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 2px solid #b8860b;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }
        .top-herald .brand {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 4px;
            background: linear-gradient(135deg, #f5d742, #b8860b, #f5d742);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .top-herald .brand i {
            -webkit-text-fill-color: initial;
            color: #f5d742;
            margin-right: 12px;
        }
        .nav-links a {
            color: #a89070;
            text-decoration: none;
            margin-left: 24px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            border-bottom: 2px solid transparent;
            padding-bottom: 6px;
            transition: 0.3s;
            text-transform: uppercase;
        }
        .nav-links a:hover { color: #f5d742; border-bottom-color: #b8860b; }

        /* ===== 导航高亮：更新日志 & 攻略 ===== */
        .nav-links a.nav-highlight {
            color: #6bc9a0;
            font-size: 19px;
            font-weight: 700;
            border-bottom-color: #6bc9a0;
            text-shadow: 0 0 20px rgba(107, 201, 160, 0.3);
        }
        .nav-links a.nav-highlight:hover {
            color: #8fdfb8;
            border-bottom-color: #8fdfb8;
            text-shadow: 0 0 30px rgba(107, 201, 160, 0.6);
        }

        .hero-banner {
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #4f3a26;
            box-shadow: 0 12px 50px rgba(0,0,0,0.8);
            margin-bottom: 30px;
            background: #1a1410;
            min-height: 120px;
        }
        .hero-banner img { width: 100%; display: block; }
        .logo-herald {
            text-align: center;
            padding: 20px 10px;
            background: #100d0a;
            border-radius: 60px;
            border: 1px solid #3a2c1e;
            margin-bottom: 35px;
        }
        .logo-herald span {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 3px;
            background: linear-gradient(90deg, #b8860b, #f5d742, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .twin-columns {
            display: flex;
            gap: 30px;
            margin-bottom: 45px;
            flex-wrap: wrap;
        }
        .main-content {
            flex: 2.5;
            min-width: 280px;
            background: #110e0b;
            border-radius: 24px;
            padding: 28px 30px;
            border: 1px solid #2f2419;
        }
        .main-content p {
            padding: 8px 0;
            font-size: 17px;
            border-bottom: 1px solid #1f160e;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .main-content p i { color: #b8860b; width: 28px; }
        .main-content .slogan-gold {
            display: block;
            text-align: center;
            font-size: 26px;
            font-weight: 900;
            padding: 18px 10px;
            margin-top: 25px;
            background: linear-gradient(135deg, #1f160e, #2f2419);
            border-radius: 50px;
            border: 1px solid #b8860b;
            color: #f5d742;
            text-shadow: 0 0 30px #b8860b;
        }
        .sidebar-actions {
            flex: 1;
            min-width: 200px;
            background: #0d0b08;
            border-radius: 24px;
            padding: 20px 15px;
            border: 1px solid #2f2419;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .action-btn {
            background: #1a1410;
            border: 1px solid #3a2c1e;
            border-radius: 60px;
            padding: 14px 8px;
            text-align: center;
            transition: 0.3s;
            cursor: pointer;
        }
        .action-btn a {
            color: #e6c28c;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .action-btn:hover { background: #b8860b; border-color: #f5d742; transform: scale(1.03); }
        .action-btn:hover a { color: #0a0908; }

        .content-blocks { display: flex; flex-direction: column; gap: 40px; margin-top: 20px; }
        .block {
            background: #0d0b08;
            border-radius: 28px;
            border: 1px solid #2f2419;
            overflow: hidden;
        }
        .block-header {
            background: linear-gradient(90deg, #1a1410, #2a1e15);
            padding: 16px 28px;
            border-bottom: 2px solid #b8860b;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .block-header span {
            font-size: 22px;
            font-weight: 700;
            color: #f5d742;
            text-shadow: 0 0 20px #b8860b;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .block-header .ornament {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #b8860b, #f5d742);
            border-radius: 4px;
        }
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: #060504;
        }
        .carousel-wrapper {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .carousel-slide { min-width: 100%; }
        .carousel-slide img { width: 100%; display: block; }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.7);
            color: #f5d742;
            border: 1px solid #b8860b;
            padding: 14px 18px;
            font-size: 24px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 10;
            transition: 0.3s;
        }
        .carousel-btn:hover { background: #b8860b; color: #0a0908; }
        .carousel-btn.prev { left: 20px; }
        .carousel-btn.next { right: 20px; }
        .carousel-dots {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 14px;
            z-index: 10;
        }
        .carousel-dots .dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255,215,0,0.2);
            border: 2px solid #b8860b;
            cursor: pointer;
            transition: 0.3s;
        }
        .carousel-dots .dot.active { background: #f5d742; border-color: #f5d742; box-shadow: 0 0 25px #b8860b; }

        /* ===== 网格画廊 ===== */
        .grid-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            padding: 22px 18px;
            background: #080706;
        }
        .grid-gallery img {
            max-width: 100%;
            height: auto;
            border-radius: 14px;
            border: 1px solid #2f2419;
            background: #0d0b08;
            transition: 0.4s;
            box-shadow: 0 6px 20px #00000080;
            flex: 0 1 auto;
        }
        .grid-gallery img:hover {
            transform: scale(1.06) translateY(-5px);
            border-color: #b8860b;
            box-shadow: 0 0 45px #b8860b40;
            z-index: 5;
        }

        /* ---- 首爆奖励专用：大图展示 ---- */
        .grid-gallery.gallery-hero {
            gap: 24px;
            padding: 28px 20px;
        }
        .grid-gallery.gallery-hero img {
            max-height: 360px;
            border-radius: 18px;
            border-width: 2px;
            flex: 0 1 auto;
            min-width: 280px;
        }
        .grid-gallery.gallery-hero img:only-child {
            max-height: 420px;
            min-width: 320px;
        }
        .grid-gallery.gallery-hero img:nth-child(1):nth-last-child(2),
        .grid-gallery.gallery-hero img:nth-child(2):nth-last-child(1) {
            flex: 1 1 45%;
            min-width: 260px;
            max-height: 400px;
        }

        .text-legend {
            width: 100%;
            text-align: center;
            color: #7cfc00;
            font-size: 20px;
            font-weight: 700;
            padding: 16px 0;
            text-shadow: 0 0 30px #7cfc00;
            letter-spacing: 3px;
        }

        .skeleton {
            background: #1a1410;
            border-radius: 12px;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3a2c1e;
            font-size: 14px;
            letter-spacing: 2px;
        }

        @media (max-width:800px) {
            .container { padding:16px; }
            .top-herald { flex-direction:column; align-items:stretch; gap:10px; }
            .nav-links { display:flex; flex-wrap:wrap; justify-content:center; gap:8px 16px; }
            .nav-links a { margin:0; }
            .nav-links a.nav-highlight { font-size:17px; }
            .main-content .slogan-gold { font-size:20px; padding:14px 6px; }
            .block-header span { font-size:18px; flex-wrap:wrap; }
            .carousel-btn { padding:8px 12px; font-size:18px; }
            .grid-gallery.gallery-hero img {
                max-height: 260px;
                min-width: 180px;
            }
            .grid-gallery.gallery-hero img:nth-child(1):nth-last-child(2),
            .grid-gallery.gallery-hero img:nth-child(2):nth-last-child(1) {
                flex: 1 1 100%;
                max-height: 300px;
            }
        }
        @media (max-width:480px) {
            .container { padding:10px; border-radius:16px; }
            .logo-herald span { font-size:16px; }
            .main-content { padding:16px; }
            .main-content p { font-size:15px; }
            .sidebar-actions { padding:14px; }
            .grid-gallery.gallery-hero img {
                max-height: 200px;
                min-width: 140px;
            }
            .nav-links a.nav-highlight { font-size:15px; }
        }
        ::-webkit-scrollbar { width:8px; background:#0a0908; }
        ::-webkit-scrollbar-thumb { background:#b8860b; border-radius:20px; }
        ::-webkit-scrollbar-thumb:hover { background:#f5d742; }