* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f5f2ea;
            color: #2d2d2d;
            padding-bottom: 60px;
        }
        .header {
            background-color: #8b4513;
            padding: 18px 20px;
            color: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffeb3b;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .nav {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        .nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav a:hover {
            background-color: #a0522d;
            transform: translateY(-2px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: #ffeb3b;
            font-size: 1.8rem;
            cursor: pointer;
            margin-bottom: 15px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #8b4513;
            margin: 25px 0;
            font-size: 2.4rem;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 12px;
            text-align: center;
        }
        h2 {
            color: #4a3728;
            margin: 35px 0 18px;
            font-size: 1.9rem;
            background-color: #f0e6d2;
            padding: 12px 18px;
            border-radius: 6px;
            border-left: 5px solid #8b4513;
        }
        h3 {
            color: #5d4037;
            margin: 30px 0 12px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 3px solid #d7ccc8;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c62828;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #388e3c;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 12px 12px 0;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.05rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #2e7d32;
            transform: scale(1.03);
        }
        .download-btn {
            background-color: #f57c00;
        }
        .download-btn:hover {
            background-color: #e65100;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 2px solid #d7ccc8;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #8b4513;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e0e0e0;
            font-size: 1.05rem;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .stats-item span:first-child {
            font-weight: 500;
            color: #5d4037;
        }
        .stats-item span:last-child {
            font-weight: bold;
            color: #8b4513;
        }
        .tips-box {
            background-color: #fff8e1;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #ffc107;
        }
        .tips-box h4 {
            color: #ff8f00;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .footer {
            background-color: #4a3728;
            color: #f5f5f5;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 25px 0;
        }
        .game-types h4, .tags h4 {
            margin-bottom: 15px;
            font-size: 1.3rem;
            color: #ffeb3b;
            padding-bottom: 5px;
            border-bottom: 1px solid #6d4c41;
        }
        .game-types a, .tags a {
            color: #e0e0e0;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffeb3b;
            text-decoration: none;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #5d4037;
            border-radius: 8px;
            font-size: 1.05rem;
        }
        .copyright {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #6d4c41;
            text-align: center;
            font-size: 0.95rem;
            color: #bdbdbd;
        }
        @media (max-width: 768px) {
            .mobile-nav-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 12px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
                margin: 20px 0;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
                padding: 10px 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 10px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 16px;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
                padding: 12px 0;
            }
            .stats-box {
                padding: 20px 15px;
            }
            .stats-item {
                flex-direction: column;
                gap: 5px;
                margin: 12px 0;
                padding-bottom: 12px;
            }
            .img-container {
                margin: 25px 0;
            }
        }
