* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Noto Sans', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #e67e22;
            padding: 15px 20px;
            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;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffcc00;
            border-bottom: 2px solid #ffcc00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d35400;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #e67e22;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 10px;
        }
        h3 {
            color: #d35400;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: 0.3s;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
        }
        .download-section {
            background-color: #fff3e0;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border: 3px solid white;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .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: #fff3e0;
            border-radius: 5px;
            transition: 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.03);
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #ffe0b2;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #d35400;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #ffcc80;
            transform: translateY(-2px);
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 20px 0;
        }
        .game-types a {
            color: #ffcc00;
            text-decoration: none;
            margin-right: 15px;
            transition: 0.3s;
        }
        .game-types a:hover {
            text-decoration: underline;
            color: #ffdd55;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e67e22;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
            }
        }
