* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f9f5ea;
            color: #3a2e1f;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #6b4e33;
            padding: 18px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 34px;
            font-weight: bold;
            color: #f5e1a7;
            text-align: center;
            margin-bottom: 18px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0 16px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.25);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 26px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 25px;
            z-index: 101;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #6b4e33;
            font-size: 38px;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 3px solid #a07847;
        }
        h2 {
            color: #6b4e33;
            font-size: 30px;
            margin: 45px 0 22px;
            padding-bottom: 12px;
            border-bottom: 2px solid #a07847;
        }
        h3 {
            color: #6b4e33;
            font-size: 24px;
            margin: 35px 0 18px;
        }
        p {
            margin-bottom: 22px;
            font-size: 19px;
            text-align: justify;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 18px;
            background-color: #6b4e33;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            font-size: 19px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #543b25;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            margin-bottom: 12px;
        }
        .image-caption {
            color: #666;
            font-size: 17px;
            font-style: italic;
        }
        .highlight {
            background-color: #f5eedd;
            border-left: 5px solid #6b4e33;
            padding: 18px 22px;
            margin: 30px 0;
            border-radius: 0 6px 6px 0;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 12px;
            padding: 28px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid #f0e8d9;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-weight: 600;
            color: #555;
        }
        .stat-value {
            color: #6b4e33;
            font-weight: bold;
        }
        .tips-list {
            margin: 25px 0 35px 45px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 19px;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f5eedd;
            color: #6b4e33;
            padding: 9px 18px;
            margin: 0 12px 12px 0;
            border-radius: 25px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e8d9be;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 35px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 18px;
            margin-bottom: 12px;
        }
        .game-type a {
            color: #6b4e33;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .game-type a:hover {
            border-bottom: 2px solid #6b4e33;
        }
        footer {
            background-color: #6b4e33;
            color: white;
            padding: 45px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: white;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            padding-bottom: 12px;
            margin-bottom: 25px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 17px;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 22px;
            border-radius: 10px;
            margin-bottom: 35px;
            font-size: 18px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 70px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            p, .tips-list li {
                font-size: 17px;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 85%;
            }
            .stats-box {
                padding: 20px;
            }
        }
