* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f7ee;
            color: #2d4d2a;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #2e7d32;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #ffeb3b;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: #ffeb3b;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        h1 {
            color: #1b5e20;
            margin: 35px 0;
            font-size: 34px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #2e7d32;
            margin: 40px 0 20px;
            font-size: 28px;
            border-bottom: 2px solid #81c784;
            padding-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: "🌿";
            position: absolute;
            left: -25px;
            top: 5px;
        }
        h3 {
            color: #2e7d32;
            margin: 30px 0 15px;
            font-size: 24px;
            padding-left: 10px;
            border-left: 3px solid #66bb6a;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #1b5e20;
            text-decoration: underline dotted #4caf50;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #0288d1;
        }
        .download-btn:hover {
            background-color: #0277bd;
        }
        .login-btn {
            background-color: #ff9800;
        }
        .login-btn:hover {
            background-color: #f57c00;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #66bb6a;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f1f8e9;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-value {
            font-size: 30px;
            font-weight: bold;
            color: #1b5e20;
            margin-bottom: 5px;
        }
        .review-box {
            background-color: white;
            border-left: 4px solid #66bb6a;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-style: italic;
            color: #558b2f;
            margin-top: 10px;
            font-weight: 500;
        }
        .tips-section, .events-section, .community-section {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f5e9;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            color: #2e7d32;
            transition: all 0.3s;
            border: 1px solid #c8e6c9;
        }
        .tag:hover {
            background-color: #c8e6c9;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 40px 0 20px;
            padding: 15px;
            background-color: #f1f8e9;
            border-radius: 8px;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            text-decoration: none;
            color: #0288d1;
            font-weight: 500;
            transition: all 0.3s;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #0277bd;
        }
        footer {
            background-color: #1b5e20;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffeb3b;
            border-left: 3px solid #ffeb3b;
        }
        .footer-section p {
            color: #e8f5e9;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #388e3c;
            margin-top: 20px;
            font-size: 14px;
            color: #c8e6c9;
        }
        .feature-list {
            margin: 20px 0;
            padding-left: 30px;
        }
        .feature-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }
        .feature-list li::before {
            content: "•";
            color: #4caf50;
            font-size: 24px;
            position: absolute;
            left: 0;
            top: -5px;
        }
        .region-badge {
            display: inline-block;
            background-color: #81c784;
            color: #1b5e20;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 14px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 65px;
                left: 0;
                right: 0;
                background-color: #2e7d32;
                padding: 20px;
                gap: 15px;
                border-top: 1px solid #4caf50;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
                margin: 25px 0;
            }
            h2 {
                font-size: 24px;
                padding-left: 5px;
            }
            h2::before {
                display: none;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
                text-align: left;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
