* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fdf9f1;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1a5e38, #2e8b57);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a5e38;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 4px solid #ff9933;
            padding-bottom: 15px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #1a5e38;
            font-size: 2rem;
            margin: 50px 0 25px;
            border-left: 5px solid #ff9933;
            padding-left: 15px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #2e8b57;
            font-size: 1.5rem;
            margin: 35px 0 15px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b85c38;
        }
        .game-buttons {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: 0.3s;
            text-align: center;
            min-width: 180px;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #ff9933;
            color: white;
        }
        .login-btn {
            background-color: #1a5e38;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            margin-bottom: 15px;
        }
        .image-caption {
            color: #666;
            font-style: italic;
            font-size: 0.95rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #ff9933;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f8f4ea;
            border-radius: 10px;
            transition: 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: bold;
            color: #1a5e38;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #666;
            font-size: 1rem;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #2e8b57;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        .reviewer {
            font-weight: bold;
            color: #1a5e38;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffd700;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .tag-container {
            margin: 50px 0 30px;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4ea;
            color: #1a5e38;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: 0.3s;
            border: 1px solid #d4e9d9;
        }
        .tag:hover {
            background-color: #1a5e38;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 50px 0 30px;
        }
        .game-type {
            display: inline-block;
            color: #1a5e38;
            margin: 0 18px 12px 0;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            font-size: 1.05rem;
            border-bottom: 2px solid transparent;
        }
        .game-type:hover {
            color: #ff9933;
            border-bottom: 2px solid #ff9933;
        }
        footer {
            background-color: #1a5e38;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-section p {
            color: #f0f0f0;
            margin-bottom: 15px;
        }
        .footer-section a {
            color: #ffd700;
            text-decoration: none;
        }
        .footer-section a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            color: #ccc;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #1a5e38;
                padding: 25px;
                gap: 18px;
                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.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .game-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
