*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --red: #b22222;
            --dark-red: #8b1a1a;
            --green: #1e6b3a;
            --dark-green: #144d2a;
            --gold: #ffd700;
            --cream: #faf6f0;
            --brown: #5c3a21;
            --light-green: #e8f5e9;
            --light-red: #ffe8e8;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--cream);
            color: #333;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: var(--red);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: var(--dark-red);
            text-decoration: underline;
        }
        .site-header {
            background: linear-gradient(135deg, var(--red), var(--dark-red));
            color: #fff;
            padding: 20px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            color: var(--gold);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 30px;
            color: var(--gold);
        }
        .site-nav {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        .site-nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 20px;
            transition: background 0.3s;
        }
        .site-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 15px auto 0;
            padding: 0 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.9);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-title {
            font-size: 20px;
            color: var(--red);
            border-bottom: 2px solid var(--gold);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar li::before {
            content: '🎄';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 14px;
        }
        .sidebar a {
            color: #444;
            font-size: 14px;
        }
        .sidebar a:hover {
            color: var(--red);
        }
        .content-area h1 {
            font-size: 36px;
            color: var(--dark-red);
            margin-bottom: 20px;
            line-height: 1.3;
            border-bottom: 3px solid var(--gold);
            padding-bottom: 15px;
        }
        .content-area h2 {
            font-size: 28px;
            color: var(--green);
            margin-top: 50px;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        .content-area h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 5px;
            background: var(--gold);
            border-radius: 3px;
        }
        .content-area h3 {
            font-size: 22px;
            color: var(--brown);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .content-area h4 {
            font-size: 18px;
            color: var(--dark-green);
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .content-area p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .content-area ul,
        .content-area ol {
            margin: 0 0 20px 25px;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .content-area blockquote {
            background: var(--light-red);
            border-left: 4px solid var(--red);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .content-area img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .content-area .img-caption {
            text-align: center;
            font-size: 14px;
            color: #777;
            margin-top: -15px;
            margin-bottom: 20px;
        }
        .search-box {
            background: linear-gradient(135deg, var(--light-green), #e0f2e8);
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid #c8e6c9;
        }
        .search-box h3 {
            margin-top: 0;
            color: var(--dark-green);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 16px;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--green);
        }
        .search-form button {
            padding: 12px 25px;
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--dark-green);
        }
        .rating-section,
        .comment-section {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid #e9ecef;
        }
        .rating-section h3,
        .comment-section h3 {
            margin-top: 0;
            color: var(--dark-red);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 30px;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0;
        }
        .star-rating i.active {
            color: var(--gold);
        }
        .rating-select {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .rating-select label {
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            background: #fff;
            padding: 5px 12px;
            border-radius: 20px;
            border: 1px solid #ddd;
        }
        .rating-select input[type="radio"] {
            accent-color: var(--gold);
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            background: var(--red);
            color: #fff;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 15px;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover {
            background: var(--dark-red);
            transform: scale(1.02);
        }
        .btn-green {
            background: var(--green);
        }
        .btn-green:hover {
            background: var(--dark-green);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 12px;
            font-size: 14px;
            font-family: inherit;
            resize: vertical;
        }
        .comment-form textarea {
            min-height: 100px;
        }
        .site-footer {
            background: #222;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .footer-container h4 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .footer-container a {
            color: #aaa;
        }
        .footer-container a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            margin: 5px 0;
        }
        friend-link a {
            color: #aaa;
        }
        friend-link a:hover {
            color: var(--gold);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 20px;
            font-size: 13px;
        }
        .game-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .game-card {
            background: #fff;
            border: 2px solid #eee;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .game-card i {
            font-size: 30px;
            color: var(--red);
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .main-container {
                grid-template-columns: 1fr;
                padding: 15px;
            }
            .content-area {
                padding: 20px;
            }
            .content-area h1 {
                font-size: 28px;
            }
            .content-area h2 {
                font-size: 24px;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
            .site-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 10px 0;
                gap: 10px;
            }
            .site-nav.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .sidebar {
                position: static;
                margin-top: 20px;
            }
        }
        @media (min-width: 769px) {
            .site-nav {
                display: flex !important;
            }
        }
        .highlight {
            background: var(--gold);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .update-time {
            display: inline-block;
            background: var(--light-green);
            color: var(--dark-green);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
            margin-bottom: 20px;
        }
        .tip-box {
            background: #fff8e1;
            border-left: 4px solid var(--gold);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box {
            background: #e3f2fd;
            border-left: 4px solid #1976d2;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
        }
