        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: #1e1e2f;
            background: #f8f9fc;
            padding: 0 0 0 0;
            min-height: 100vh;
        }
        a {
            color: #0057b3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0b0b1a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #ff6b35;
            padding-bottom: 0.3rem;
            display: inline-block;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #1e2a4a;
        }
        h4 {
            font-size: 1.1rem;
            color: #2c3e6b;
        }
        p {
            margin-bottom: 1.25rem;
            color: #2d2d44;
        }
        strong {
            color: #0b0b1a;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b0b2e 0%, #1a1a4e 100%);
            color: #fff;
            padding: 0 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 20px;
            max-width: 1120px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(45deg, #ff6b35, #ffab40);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff6b35;
            margin-right: 6px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #e0e0f0;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.25s;
            display: inline-block;
        }
        .nav-list li a:hover {
            background: rgba(255, 107, 53, 0.25);
            color: #ffab40;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~.nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding: 16px 0 8px 0;
        }
        .breadcrumb {
            background: #eef0f7;
            padding: 12px 20px;
            font-size: 0.88rem;
            border-bottom: 1px solid #dde0eb;
        }
        .breadcrumb a {
            color: #0057b3;
        }
        .breadcrumb a:hover {
            color: #ff6b35;
        }
        .breadcrumb span {
            color: #555;
        }
        .breadcrumb i {
            margin: 0 6px;
            color: #999;
            font-size: 0.7rem;
        }
        .search-section {
            background: #fff;
            padding: 24px 20px;
            border-radius: 16px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
            margin: 28px 0 32px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }
        .search-section form {
            display: flex;
            flex: 2 1 320px;
            gap: 8px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #dde0eb;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fafbff;
        }
        .search-section input[type="text"]:focus {
            border-color: #ff6b35;
        }
        .search-section button {
            background: #ff6b35;
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #e5551e;
            transform: scale(1.02);
        }
        .hero-img-wrap {
            margin: 24px 0 32px 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
            background: #dde0eb;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            border-radius: 18px;
        }
        .content-area {
            background: #fff;
            padding: 32px 28px;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin-bottom: 32px;
        }
        .content-area p {
            font-size: 1.05rem;
        }
        .highlight-box {
            background: #f0f4ff;
            border-left: 6px solid #ff6b35;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 22px;
            margin: 28px 0;
        }
        .game-card {
            background: #f9faff;
            border-radius: 16px;
            padding: 20px 18px;
            border: 1px solid #eef0f7;
            transition: transform 0.2s, box-shadow 0.25s;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
        }
        .game-card h4 {
            margin-top: 0;
            font-size: 1.15rem;
        }
        .game-card i {
            color: #ff6b35;
            margin-right: 6px;
        }
        .interact-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin: 36px 0 20px 0;
            padding: 24px 0;
            border-top: 2px solid #eef0f7;
            border-bottom: 2px solid #eef0f7;
        }
        .rating-box,
        .comment-box {
            flex: 1 1 280px;
        }
        .rating-box h4,
        .comment-box h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .star-group {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #ffb84d;
            margin: 8px 0 12px 0;
            cursor: default;
        }
        .star-group i {
            transition: transform 0.15s;
        }
        .star-group i:hover {
            transform: scale(1.2);
        }
        .rating-box form,
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 6px;
        }
        .rating-box form input,
        .comment-box form textarea,
        .comment-box form input {
            padding: 10px 14px;
            border: 2px solid #dde0eb;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #fafbff;
            font-family: inherit;
        }
        .rating-box form input:focus,
        .comment-box form textarea:focus,
        .comment-box form input:focus {
            border-color: #ff6b35;
        }
        .rating-box form button,
        .comment-box form button {
            align-self: flex-start;
            background: #1a1a4e;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .rating-box form button:hover,
        .comment-box form button:hover {
            background: #ff6b35;
        }
        .comment-box textarea {
            min-height: 80px;
            resize: vertical;
        }
        .site-footer {
            background: #0b0b2e;
            color: #c8c8e0;
            padding: 40px 20px 28px 20px;
            margin-top: 44px;
            border-top: 4px solid #ff6b35;
        }
        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
        }
        .footer-inner h4 {
            color: #fff;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #ff6b35;
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-inner a {
            color: #b0b8d0;
            display: block;
            margin: 6px 0;
            transition: color 0.2s;
        }
        .footer-inner a:hover {
            color: #ffab40;
            text-decoration: none;
        }
        .footer-bottom {
            max-width: 1120px;
            margin: 28px auto 0 auto;
            padding-top: 20px;
            border-top: 1px solid #2a2a5a;
            text-align: center;
            font-size: 0.9rem;
            color: #8888aa;
        }
        .footer-bottom strong {
            color: #ddd;
        }
        friend-link {
            display: block;
            margin: 12px 0;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            background: rgba(255, 255, 255, 0.05);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 820px) {
            .header-inner {
                padding: 12px 16px;
            }
            .nav-list {
                display: none;
                width: 100%;
                background: #12123a;
                border-radius: 0 0 16px 16px;
                padding: 12px 0;
                margin-top: 8px;
            }
            .nav-list li {
                width: 100%;
                text-align: center;
            }
            .nav-list li a {
                display: block;
                padding: 12px 20px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-area {
                padding: 20px 16px;
            }
            .search-section {
                flex-direction: column;
                padding: 18px 16px;
            }
            .search-section form {
                width: 100%;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .interact-wrap {
                flex-direction: column;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }
            .my-logo {
                font-size: 1.25rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
                padding: 10px 14px;
                overflow-x: auto;
                white-space: nowrap;
            }
            .rating-box form button,
            .comment-box form button {
                width: 100%;
                text-align: center;
            }
            .hero-img-wrap img {
                max-height: 220px;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: #666;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }
        .last-updated {
            background: #f0f2f8;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            display: inline-block;
            color: #444;
            margin: 8px 0 16px 0;
        }
        .last-updated i {
            margin-right: 6px;
            color: #ff6b35;
        }
        .faq-item {
            margin: 16px 0;
            padding: 16px 20px;
            background: #f5f7fd;
            border-radius: 12px;
            border-left: 4px solid #1a1a4e;
        }
        .faq-item strong {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #dde0eb;
        }
        th {
            background: #1a1a4e;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f9fc;
        }
        tr:hover {
            background: #f0f2ff;
        }
