* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f0f7ee;
            color: #2d5d2a;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #2d5d2a;
            padding: 18px 0;
            color: #ffffff;
            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 {
            font-size: 1.8rem;
            font-weight: bold;
            color: #c8e6c9;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #c8e6c9;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #c8e6c9;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 100;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #2d5d2a;
            font-size: 2.6rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #81c784;
        }
        h2 {
            color: #2e7d32;
            font-size: 2.1rem;
            margin: 45px 0 22px;
            padding-left: 12px;
            border-left: 4px solid #81c784;
        }
        h3 {
            color: #388e3c;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            position: relative;
            padding-left: 10px;
        }
        h3:before {
            content: '🌿';
            position: absolute;
            left: -25px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #1b5e20;
            text-decoration: underline dotted #4caf50;
            text-underline-offset: 4px;
        }
        .download-section {
            background-color: #e8f5e9;
            border-radius: 12px;
            padding: 35px;
            margin: 45px 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid #c8e6c9;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 12px 18px;
            background-color: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.25rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
        }
        .btn:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(76, 175, 80, 0.3);
        }
        .download-btn {
            background-color: #66bb6a;
        }
        .download-btn:hover {
            background-color: #43a047;
        }
        .login-btn {
            background-color: #26a69a;
        }
        .login-btn:hover {
            background-color: #00897b;
        }
        .stats-box {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 35px 0;
        }
        .stat-item {
            flex: 1;
            min-width: 260px;
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 5px solid #4caf50;
        }
        .stat-item h4 {
            color: #388e3c;
            font-size: 1.4rem;
            margin-bottom: 12px;
        }
        .stat-item p {
            font-size: 2.2rem;
            font-weight: bold;
            color: #2e7d32;
            text-align: center;
            margin-bottom: 0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 10px solid white;
        }
        .tips-list {
            margin: 25px 0 35px 50px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 1.15rem;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: '•';
            color: #4caf50;
            font-weight: bold;
            position: absolute;
            left: -20px;
            font-size: 1.5rem;
        }
        .community-section {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 35px;
            margin: 45px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 1px solid #e8f5e9;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #e8f5e9;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            color: #2d5d2a;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #c8e6c9;
            transform: translateY(-2px);
            border-color: #81c784;
        }
        .game-types {
            margin: 45px 0 25px;
        }
        .game-type-link {
            color: #2e7d32;
            text-decoration: none;
            margin-right: 20px;
            font-size: 1.15rem;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: #1b5e20;
            text-decoration: underline;
        }
        footer {
            background-color: #2d5d2a;
            color: white;
            padding: 45px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #c8e6c9;
            padding-bottom: 8px;
            border-bottom: 2px solid #81c784;
            display: inline-block;
        }
        .recommendation {
            font-size: 1.15rem;
            margin: 25px 0;
            line-height: 1.8;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #4caf50;
            margin-top: 35px;
            font-size: 1rem;
            color: #e8f5e9;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #2d5d2a;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 35px 0 18px;
            }
            h3 {
                font-size: 1.5rem;
                padding-left: 0;
            }
            h3:before {
                display: none;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 85%;
                padding: 14px 20px;
            }
            .tips-list {
                margin: 20px 0 30px 30px;
            }
            .stat-item {
                min-width: 100%;
            }
        }
