body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 2px solid #e0a800; }
        .logo { font-size: 28px; font-weight: bold; color: #e0a800; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #333; font-weight: 500; }
        .mobile-menu-btn { display: none; background: #e0a800; color: white; border: none; padding: 8px 12px; border-radius: 4px; }
        h1 { color: #e0a800; font-size: 32px; margin-bottom: 20px; }
        h2 { color: #d48c00; font-size: 24px; margin-top: 30px; }
        h3 { color: #b87000; font-size: 20px; margin-top: 25px; }
        p { margin-bottom: 15px; }
        .btn { display: inline-block; background: #e0a800; color: white; padding: 12px 24px; text-decoration: none; border-radius: 4px; margin: 10px 0; font-weight: bold; }
        .download-section, .login-section { background: #f9f9f9; padding: 20px; border-radius: 8px; margin: 20px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #ddd; }
        .tags, .game-types { margin: 20px 0; }
        .tag { display: inline-block; background: #eee; padding: 5px 10px; margin-right: 5px; border-radius: 4px; text-decoration: none; color: #333; }
        .type-link { display: inline-block; margin-right: 15px; }
        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-menu-btn { display: block; }
            .active nav { display: block; }
            h1 { font-size: 28px; }
            h2 { font-size: 22px; }
        }
