* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        body {
            background-color: #f5f1e6;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #8b5a2b;
            padding: 18px 20px;
            color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            z-index: 100;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b5a2b;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8b5a2b;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            border-bottom: 3px solid #d2b48c;
            padding-bottom: 8px;
            position: relative;
        }
        h2::after {
            content: "🌿";
            position: absolute;
            right: 0;
        }
        h3 {
            color: #5d4037;
            font-size: 1.7rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #d2b48c;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b5a2b;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 20px 12px;
            background-color: #8b5a2b;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #6d4c41;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #2e7d32;
        }
        .btn-download:hover {
            background-color: #1b5e20;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 5px solid #fff;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #d2b48c;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f9f5ea;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-item p:first-child {
            font-size: 1.2rem;
            color: #5d4037;
            margin-bottom: 10px;
        }
        .stat-item p:last-child {
            font-size: 2.2rem;
            font-weight: bold;
            color: #8b5a2b;
            margin-bottom: 0;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 5px solid #ffd700;
            position: relative;
        }
        .review-box::before {
            content: "💬";
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 2rem;
        }
        .review-box p {
            margin-left: 15px;
            padding-top: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #f1e8d9;
            color: #8b5a2b;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e0d0b8;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            color: #8b5a2b;
            text-decoration: none;
            margin: 0 12px 12px 0;
            font-weight: bold;
            font-size: 1.1rem;
            position: relative;
            padding-left: 20px;
        }
        .game-type::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #d2b48c;
            font-size: 1.5rem;
        }
        .game-type:hover {
            color: #5d4037;
        }
        footer {
            background-color: #8b5a2b;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            border-left: 4px solid #ffd700;
            padding-left: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #a0522d;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #f1e8d9;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #8b5a2b;
                padding: 30px 20px;
                gap: 20px;
                z-index: 99;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.1rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 80%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
