* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f8f2e6;
            color: #2d2314;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #a07842;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: #ffdf5e;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.7px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:hover {
            color: #ffdf5e;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffdf5e;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b5a2b;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            padding-bottom: 12px;
            border-bottom: 3px solid #ffdf5e;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #3a2e21;
            font-size: 1.8rem;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #8b5a2b;
            position: relative;
        }
        h2:before {
            content: '🎲';
            margin-right: 10px;
        }
        h3 {
            color: #8b5a2b;
            font-size: 1.4rem;
            margin: 35px 0 15px;
            position: relative;
            padding-left: 15px;
        }
        h3:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #cd5c5c;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b5a2b;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 12px;
            background-color: #8b5a2b;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #6d4c41;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-secondary {
            background-color: #cd5c5c;
        }
        .btn-secondary:hover {
            background-color: #b22222;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            border-top: 5px solid #ffdf5e;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-item span:first-child {
            font-weight: 600;
            color: #3a2e21;
        }
        .stat-item span:last-child {
            color: #8b5a2b;
            font-weight: bold;
        }
        .review-box {
            background-color: white;
            border-left: 5px solid #ffdf5e;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-box:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 5rem;
            color: rgba(139, 90, 43, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        .reviewer {
            font-weight: bold;
            color: #3a2e21;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .reviewer-location {
            color: #704214;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        .rating {
            color: #ffdf5e;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f5f0e6;
            color: #8b5a2b;
            padding: 9px 18px;
            margin: 0 10px 12px 0;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #8b5a2b;
            color: white;
            transform: translateY(-2px);
            border-color: #8b5a2b;
        }
        .game-type-nav {
            margin: 35px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #3a2e21;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.2s ease;
        }
        .game-type:hover {
            color: #8b5a2b;
            text-decoration: underline;
        }
        footer {
            background-color: #3a2e21;
            color: white;
            padding: 50px 0 25px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffdf5e;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #d2b48c;
        }
        .recommendation {
            background-color: #f5f0e6;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.15rem;
            border: 1px solid #e6d5c0;
        }
        .tips-box {
            background-color: #fff8dc;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            border-left: 4px solid #ffdf5e;
        }
        .tips-box h4 {
            color: #8b4513;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .feature-list {
            margin: 25px 0;
            padding-left: 25px;
        }
        .feature-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .feature-list li:before {
            content: '•';
            color: #8b5a2b;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #8b5a2b;
                padding: 25px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 12px 20px;
            }
            .stat-item {
                flex-direction: column;
                margin-bottom: 15px;
            }
            .stat-item span:last-child {
                margin-top: 5px;
                color: #cd5c5c;
            }
            .review-box {
                padding: 20px 15px;
            }
        }
