        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f7f3e9;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c4450c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #9a2d00;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            color: #1e1e2a;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #f59e0b;
            display: inline-block;
            padding-bottom: 0.2em;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 6px solid #f59e0b;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.3rem;
            color: #2d2d3f;
        }
        h4 {
            font-size: 1.1rem;
            color: #3d3d52;
        }
        p {
            margin-bottom: 1.2em;
        }
        .content-section {
            margin-bottom: 2.5em;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 12px;
            border-bottom: 2px solid #e0d6c8;
            background: #f7f3e9;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #1e1e2a;
            padding: 4px 10px;
        }
        .nav-menu {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 500;
            padding: 4px 6px;
            border-radius: 4px;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            background: #f59e0b20;
        }
        .breadcrumb {
            padding: 12px 0 6px;
            font-size: 0.9rem;
            color: #5a5a6e;
        }
        .breadcrumb span {
            margin: 0 4px;
        }
        .breadcrumb a {
            color: #c4450c;
        }
        .search-form {
            display: flex;
            gap: 8px;
            max-width: 480px;
            margin: 18px 0 10px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #d1c8b8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf7;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: #f59e0b;
        }
        .search-form button {
            padding: 10px 22px;
            background: #f59e0b;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            color: #1e1e2a;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .search-form button:hover {
            background: #d97706;
            transform: scale(1.02);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .game-card {
            background: #fffcf7;
            border-radius: 16px;
            padding: 18px 16px 22px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #e8dfd0;
        }
        .game-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
        }
        .game-card h3 {
            margin-top: 0.2em;
        }
        .game-card .rating-star {
            color: #f59e0b;
            letter-spacing: 2px;
        }
        .rating-area,
        .comment-area {
            background: #fffcf7;
            border-radius: 16px;
            padding: 22px 24px;
            margin: 28px 0;
            border: 1px solid #e8dfd0;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d1c8b8;
            transition: color 0.15s;
        }
        .star-rating i.active {
            color: #f59e0b;
        }
        .star-rating i:hover,
        .star-rating i.hover {
            color: #fbbf24;
        }
        .comment-list {
            max-height: 320px;
            overflow-y: auto;
            margin: 14px 0;
            border-top: 1px solid #eee;
            padding-top: 12px;
        }
        .comment-item {
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
        }
        .comment-item strong {
            color: #c4450c;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 10px 14px;
            border: 2px solid #d1c8b8;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fffcf7;
            outline: none;
            transition: border 0.25s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #f59e0b;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 10px 28px;
            background: #c4450c;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-form button:hover {
            background: #9a2d00;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 20px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #5a5a6e;
            padding: 8px 0 4px;
            font-style: italic;
        }
        friend-link {
            display: block;
            padding: 18px 0 12px;
            border-top: 2px solid #e0d6c8;
            margin-top: 28px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 14px 4px 0;
        }
        .site-footer {
            padding: 20px 0 28px;
            font-size: 0.9rem;
            color: #5a5a6e;
            border-top: 1px solid #e0d6c8;
            margin-top: 10px;
            text-align: center;
        }
        .site-footer .copyright {
            margin-top: 10px;
            font-weight: 400;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 6px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .rating-area,
            .comment-area {
                padding: 16px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.4rem;
            }
        }
        .badge {
            display: inline-block;
            background: #f59e0b20;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #8a5c00;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .text-accent {
            color: #c4450c;
        }
        .mt-1 {
            margin-top: 1em;
        }
        .mb-1 {
            margin-bottom: 1em;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a7a8e;
            background: #f0ebe2;
            padding: 2px 14px;
            border-radius: 40px;
            display: inline-block;
        }
