        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f5f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #96281b;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.8rem 0;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e1e2a 0%, #2c2c3e 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7d94e, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7d94e;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #e8e4dd;
            padding: 0.45rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: rgba(255, 255, 255, 0.12);
            color: #f7d94e;
            text-decoration: none;
        }
        .nav-list li a i {
            font-size: 0.85rem;
            opacity: 0.7;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-check {
            display: none;
        }
        .breadcrumb-wrap {
            background: #eae7df;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d6d2c8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem 0 0.2rem;
            color: #888;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb .current {
            color: #1e1e2a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2c2c3e 0%, #1a1a2a 100%);
            color: #fff;
            padding: 3rem 0 2.8rem;
            border-bottom: 4px solid #f7d94e;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 0.6rem;
        }
        .hero h1 i {
            color: #f7d94e;
            margin-right: 0.5rem;
        }
        .hero .subhead {
            font-size: 1.15rem;
            color: #cbc6bc;
            max-width: 720px;
            margin-bottom: 1.2rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #a8a4a0;
        }
        .hero-meta span i {
            margin-right: 0.4rem;
            color: #f7d94e;
        }
        section {
            margin-bottom: 3.5rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f0ece4;
            color: #1e1e2a;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        h2 i {
            color: #c0392b;
            font-size: 1.6rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem 0;
            color: #2c2c3e;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem 0;
            color: #3d3d50;
        }
        p {
            margin: 0.8rem 0;
            color: #2d2d3a;
        }
        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            border: 1px solid #eeebe5;
        }
        .highlight-box {
            background: #fcf8e8;
            border-left: 5px solid #f7d94e;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.2rem 0;
        }
        .stat-item {
            background: #f4f2ed;
            border-radius: 12px;
            padding: 1.2rem;
            text-align: center;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #c0392b;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #555;
            font-weight: 500;
        }
        .feature-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }
        .feature-img figcaption {
            background: #f4f2ed;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #555;
            text-align: center;
        }
        .search-area {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            border: 1px solid #eeebe5;
        }
        .search-area form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-area input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd8ce;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-area input[type="text"]:focus {
            border-color: #c0392b;
        }
        .search-area button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-area button:hover {
            background: #96281b;
        }
        .review-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            border: 1px solid #eeebe5;
        }
        .review-card form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .review-card .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .review-card .form-row input,
        .review-card .form-row textarea {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd8ce;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            font-family: inherit;
            transition: border 0.2s;
        }
        .review-card .form-row textarea {
            min-height: 100px;
            resize: vertical;
        }
        .review-card .form-row input:focus,
        .review-card .form-row textarea:focus {
            border-color: #c0392b;
        }
        .review-card button {
            background: #1e1e2a;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .review-card button:hover {
            background: #2c2c3e;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd8ce;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7d94e;
        }
        .site-footer {
            background: #1e1e2a;
            color: #cbc6bc;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
            border-top: 4px solid #f7d94e;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f7d94e;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            border: none;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.4rem;
        }
        .footer-inner ul li a {
            color: #a8a4a0;
            font-size: 0.9rem;
        }
        .footer-inner ul li a:hover {
            color: #f7d94e;
        }
        .footer-bottom {
            border-top: 1px solid #2c2c3e;
            padding-top: 1.5rem;
            margin-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin-top: 0.8rem;
        }
        friend-link a {
            color: #a8a4a0;
            font-size: 0.9rem;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.04);
            transition: all 0.2s;
        }
        friend-link a:hover {
            color: #f7d94e;
            background: rgba(255, 255, 255, 0.08);
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e1e2a;
                padding: 0.8rem 0;
                border-radius: 12px;
                margin-top: 0.6rem;
                gap: 0.2rem;
            }
            .nav-check:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-card,
            .search-area,
            .review-card {
                padding: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero {
                padding: 2rem 0;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
            .review-card .form-row {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 0.9rem;
            }
        }
        .text-muted {
            color: #777;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        .badge {
            display: inline-block;
            background: #c0392b;
            color: #fff;
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .badge-gold {
            background: #f7d94e;
            color: #1e1e2a;
        }
        .game-link-card {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #f4f2ed;
            padding: 0.3rem 1rem 0.3rem 0.8rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #1e1e2a;
            transition: all 0.2s;
            border: 1px solid #e0dcd4;
        }
        .game-link-card:hover {
            background: #e8e4dd;
            text-decoration: none;
            border-color: #c0392b;
        }
        .game-link-card i {
            color: #c0392b;
        }
