* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #6b4226;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffcc00;
            font-size: 26px;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 35px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        nav ul li a:hover {
            color: #ffcc00;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #6b4226;
            font-size: 38px;
            margin-bottom: 35px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 4px solid #d4a024;
            position: relative;
        }
        h1:after {
            content: '🌿';
            position: absolute;
            right: 20px;
            bottom: -10px;
        }
        h1:before {
            content: '🌿';
            position: absolute;
            left: 20px;
            bottom: -10px;
        }
        h2 {
            color: #6b4226;
            font-size: 28px;
            margin: 50px 0 25px;
            padding-left: 18px;
            border-left: 5px solid #d4a024;
            position: relative;
        }
        h2:before {
            content: '•';
            color: #d4a024;
            font-size: 30px;
            position: absolute;
            left: -10px;
        }
        h3 {
            color: #6b4226;
            font-size: 23px;
            margin: 35px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px dotted #d4a024;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #6b4226;
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 4px;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            margin: 50px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 19px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 180px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #2e7d32;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .download-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.5s ease;
        }
        .download-btn:hover:before {
            left: 100%;
        }
        .login-btn {
            background-color: #d4a024;
            color: #2d2d2d;
            position: relative;
            overflow: hidden;
        }
        .login-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.5s ease;
        }
        .login-btn:hover:before {
            left: 100%;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        img {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .image-container:hover img {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            border-top: 5px solid #d4a024;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f5f1e0;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #6b4226;
            margin-bottom: 12px;
            font-family: 'Georgia', serif;
        }
        .stat-label {
            font-size: 17px;
            color: #4a4a4a;
        }
        .review-container {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-left: 4px solid #d4a024;
            transition: transform 0.3s ease;
        }
        .review-container:hover {
            transform: translateX(5px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            align-items: center;
        }
        .reviewer {
            font-weight: bold;
            font-size: 19px;
            color: #6b4226;
        }
        .rating {
            color: #d4a024;
            font-size: 20px;
        }
        .tag-container {
            margin: 50px 0;
            background-color: #f5f1e0;
            padding: 25px;
            border-radius: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #ffffff;
            color: #6b4226;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
            border: 1px solid #e0d8b0;
        }
        .tag:hover {
            background-color: #6b4226;
            color: white;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 50px 0;
            background-color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .type-link {
            color: #6b4226;
            text-decoration: none;
            margin-right: 25px;
            font-size: 19px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        .type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #d4a024;
            transition: width 0.3s ease;
        }
        .type-link:hover {
            color: #d4a024;
        }
        .type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2d2d2d;
            color: #e0e0e0;
            padding: 50px 20px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .footer-section h3 {
            color: #ffcc00;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 22px;
        }
        .footer-section p {
            color: #d0d0d0;
            margin-bottom: 15px;
            font-size: 17px;
        }
        .footer-section a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4a4a4a;
            margin-top: 30px;
            font-size: 16px;
            color: #b0b0b0;
        }
        .tips-box {
            background-color: #fff8e1;
            border-left: 5px solid #d4a024;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box h4 {
            color: #6b4226;
            margin-bottom: 10px;
            font-size: 19px;
        }
        .gameplay-tip {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .gameplay-tip:before {
            content: '→';
            position: absolute;
            left: 0;
            color: #d4a024;
        }
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                padding: 15px 20px;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 12px 0;
                text-align: center;
            }
            nav ul li a {
                font-size: 18px;
                display: block;
                padding: 8px 0;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 32px;
                padding: 0 20px 15px;
            }
            h1:after, h1:before {
                display: none;
            }
            h2 {
                font-size: 24px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 21px;
                margin: 30px 0 15px;
            }
            p {
                font-size: 17px;
                text-align: left;
            }
            .btn {
                width: 100%;
                padding: 15px 20px;
                font-size: 18px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .type-link {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
